/* ======================================================================
   FA HOMEPAGE — hero block (gold H1, same treatment as the other brands).
   Loaded only by /fa/index.html (after style.css so it can override).
   Scoped to .section_image .top_button so the mid-page payment banner
   (.paymentDetails .top_button) and the other languages are untouched.

   Persian is RTL and cursive: letter-spacing is left at `normal` here so
   the joined glyphs are not torn apart (unlike the Latin pages, which add
   a small tracking value).
   ====================================================================== */

.section_image .top_button {
    text-align: center;
}

/* Desktop: widen the banner block so the H1 sits beside the artwork */
@media (min-width: 768px) {
    .section_image .top_button {
        width: min(560px, 46%);
        margin-left: 60px;
    }
}

/* The frame carries the panel so the H1 itself is free to use a
   background-clip gradient fill (which would otherwise eat the panel). */
.section_image .top_button .hero_frame {
    margin: 0 0 18px;
    padding: 16px 22px;
    background: color-mix(in srgb, var(--color-dark) 55%, transparent);
    border: 2px solid color-mix(in srgb, var(--color-accent-3) 55%, transparent);
    border-radius: 6px;
}

/* Gold lettering, two-layer technique (same as the center_popup component):
   1) base element  — dark gradient + transparent stroke, painted stroke-first,
                      so the stroke expansion forms the dark edge;
   2) ::after       — repeats the text via attr(data-text) and lays the gold
                      gradient on top, with no stroke.
   The markup must therefore carry data-text with the same value. */
.section_image .top_button .hero_title {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    font: 900 clamp(20px, 3vw, 40px)/1.35 Font-Secondary, Tahoma, Arial, sans-serif;
    letter-spacing: normal;
    background: linear-gradient(180deg, #C23222 0%, #570100 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 3px transparent;
    paint-order: stroke fill;
    text-shadow: none;
}

.section_image .top_button .hero_title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #FEFA47 0%, #FFF83D 44.23%, #F9D821 60.58%, #FBA109 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0 transparent;
    text-shadow: none;
}

.section_image .top_button .btn_2 {
    font-size: clamp(15px, 1.8vw, 22px);
    padding-top: 14px;
    padding-bottom: 14px;
}
