/* ==========================================================================
   market-entry.css — UK market-entry pages, English and Turkish.
   Added 2026-08-27. Shared by:
     /uk-market-entry-turkish-brands.html
     /tr/ingiltere-de-restoran-acmak.html

   Root-absolute path on purpose: the Turkish page lives one directory down
   and a relative stylesheet href would 404 there.

   BLOCK TWO CAVEAT ORDERING. The trade-estimate caveat must render ABOVE the
   figures at every viewport width. It does so because it is FIRST IN SOURCE
   ORDER inside .me-panel and nothing here reorders it — no flex `order`, no
   grid placement, no float, no absolute positioning on that panel. Do not add
   any. Source order is the guarantee; a media query is not.
   ========================================================================== */

.me-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1rem;
}

.me-lede {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 1.25rem;
}

/* ---------- credential list ---------- */

.me-credentials {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0 0 1rem;
    color: #374151;
}

.me-credentials li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Same small type as the logo-strip note on about.html, left-aligned to sit
   under a left-aligned list rather than a centred strip. */
.me-note {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 16px 0 0;
    max-width: none;
    text-align: left;
}

/* ---------- what you face ---------- */

.me-faces {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0 0 1rem;
    color: #374151;
}

.me-faces li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.me-regulated {
    border-left: 3px solid #E1B168;
    padding: 12px 0 12px 16px;
    margin: 20px 0 0;
    color: #374151;
    line-height: 1.7;
    background: #fffdf7;
}

/* ---------- cost section ---------- */

.me-stamp {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #6b7280;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 4px 10px;
    margin-bottom: 1.5rem;
}

.me-costlist {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.me-costlist > li {
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.me-costlist > li:last-child {
    border-bottom: 0;
}

.me-fig {
    display: block;
    color: #1f2937;
    line-height: 1.65;
    margin-bottom: 6px;
}

.me-src {
    display: block;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #6b7280;
    /* Long gov.uk URLs must not push the page into a horizontal scroll. */
    overflow-wrap: anywhere;
    word-break: break-word;
}

.me-src a {
    color: #8a6d33;
    text-decoration: underline;
}

.me-src a:hover {
    color: #6b5427;
}

/* ---------- block two: trade estimates ---------- */

.me-panel {
    background: #f7f5f0;
    border: 1px solid #e3ddd0;
    border-radius: 8px;
    padding: 24px;
    margin: 2rem 0 1.5rem;
}

.me-panel h3 {
    margin-top: 0;
}

/* First in source order inside .me-panel — see header note. */
.me-caveat {
    background: #fff;
    border: 1px solid #e3ddd0;
    border-left: 4px solid #b8860b;
    border-radius: 4px;
    padding: 14px 16px;
    margin: 0 0 20px;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #4b5563;
}

.me-reconcile {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #4b5563;
    margin: 4px 0 0;
}

.me-closing {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
    margin-top: 8px;
}

/* ---------- cta ---------- */

.me-cta {
    background: #0a1930;
    border-radius: 8px;
    padding: 28px 24px;
    margin: 2.5rem 0 0;
    text-align: center;
}

.me-cta p {
    color: #e5e7eb;
    font-size: 1.0625rem;
    line-height: 1.6;
    margin: 0 0 16px;
}

.me-cta a {
    display: inline-block;
    background: #E1B168;
    color: #0a1930;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    min-height: 44px;
    line-height: 20px;
    transition: background 0.2s ease;
}

.me-cta a:hover {
    background: #d0a052;
}

/* ---------- language link ---------- */

/* Language switch. It sits in the header row as its own element, NOT as an item
   inside the nav list — as a tenth nav item it wrapped the header onto three
   lines and clipped itself off the right edge at exactly 1024px. Standing apart
   also reads correctly: it switches the language, it is not a destination. */
.me-lang {
    color: #374151;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
    font-size: 0.95rem;
    margin-left: 1.25rem;
    flex: 0 0 auto;
}

.me-lang:hover {
    color: #b8860b;
}

@media (max-width: 767px) {
    .me-panel {
        padding: 18px;
    }

    .me-cta {
        padding: 24px 18px;
    }
}

@media print {
    .me-cta,
    .me-lang {
        display: none;
    }

    .me-panel,
    .me-caveat {
        background: #fff;
        border: 1px solid #999;
    }

    /* Print the destination of every source link — a printed citation with no
       URL is not a citation. */
    .me-src a::after {
        content: " (" attr(href) ")";
        font-size: 0.75rem;
        word-break: break-all;
    }
}
