/* ─────────────────────────────────────────────────────────────
   Elementor Read More Widget — Stylesheet v3
   ───────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@700&display=swap');

.erw-widget {
    box-sizing: border-box;
    width: 100%;
    position: relative;
}

.erw-widget *,
.erw-widget *::before,
.erw-widget *::after {
    box-sizing: inherit;
}

/* ── Clip wrapper — overflow + height set by JS ──────────────── */
.erw-clip-wrapper {
    position: relative;
    transition: height 0.52s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Content body ────────────────────────────────────────────── */
.erw-content-body > *:first-child { margin-top: 0; }
.erw-content-body > *:last-child  { margin-bottom: 0; }
.erw-content-body img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── Fade overlay ────────────────────────────────────────────── */
.erw-fade-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    transition: opacity 0.38s ease;
    will-change: opacity;
    z-index: 2;
}

/* ── Button wrap ─────────────────────────────────────────────── */
.erw-btn-wrap {
    margin-top: 16px;
    position: relative;
    z-index: 3;
}

/* ── Button base ─────────────────────────────────────────────── */
.erw-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none!important;
    background: none;
    padding: 0;
    line-height: 1;
    transition:
        background-color 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease,
        opacity 0.22s ease,
        box-shadow 0.22s ease;
}
.erw-btn:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

/* ─ Fyldt ────────────────────────────────────────────────────── */
.erw-btn--filled {
    background-color: #F1B71C !important;
    color: #000000 !important;
    padding: 18px 35px !important;
    border-radius: 0px!important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.7px !important;
}
@media (hover: hover) and (pointer: fine) {
    .erw-btn--filled:hover {
        opacity: 0.85;
        box-shadow: 0 4px 20px rgba(241,183,28,.4);
    }
}

/* ─ Outline ──────────────────────────────────────────────────── */
.erw-btn--outline {
    border: 2px solid currentColor;
    color: #1a1a2e;
    padding: 16px 33px;
    border-radius: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.7px;
}
@media (hover: hover) and (pointer: fine) {
    .erw-btn--outline:hover { opacity: 0.7; }
}

/* ─ Tekstlink ────────────────────────────────────────────────── */
.erw-btn--text_link {
    color: #1a1a2e;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}
@media (hover: hover) and (pointer: fine) {
    .erw-btn--text_link:hover { opacity: 0.65; }
}

/* ── Pil-ikon rotation ───────────────────────────────────────── */
.erw-btn-icon {
    display: inline-flex;
    align-items: center;
    transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.erw-btn[aria-expanded="true"] .erw-btn-icon {
    transform: rotate(180deg);
}
