/* Adam's Delivery static/footer page polish v0.1.20 */
.ad-static-shell {
    max-width: 1120px;
    margin: 0 auto;
    padding: 30px 18px 76px;
}

.ad-static-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #777777;
    font-weight: 900;
    margin-bottom: 16px;
}

.ad-static-breadcrumb a {
    color: #111111;
    text-decoration: none;
}

.ad-static-breadcrumb a:hover {
    color: #FEA806;
}

.ad-static-hero {
    background: #111111;
    color: #ffffff;
    border-left: 6px solid #FEA806;
    padding: clamp(22px, 4vw, 38px);
    margin-bottom: 18px;
}

.ad-static-kicker,
.ad-account-kicker {
    display: inline-block;
    color: #FEA806;
    font-size: 12px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.ad-static-hero h1 {
    margin: 7px 0 10px;
    font-size: clamp(34px, 6vw, 58px);
    line-height: .95;
    letter-spacing: -0.06em;
}

.ad-static-hero p {
    max-width: 850px;
    margin: 0;
    color: #eeeeee;
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.45;
    font-weight: 800;
}

.ad-static-notice,
.ad-static-error {
    border: 1px solid #FEA806;
    border-left-width: 6px;
    background: #fff7e8;
    color: #111111;
    padding: 14px 16px;
    margin: 0 0 18px;
    font-weight: 900;
}

.ad-static-error {
    border-color: #c62828;
    background: #fff0f0;
}

.ad-static-error p {
    margin: 0;
}

.ad-static-card-stack {
    display: grid;
    gap: 14px;
}

.ad-static-card,
.ad-claim-card {
    background: #ffffff;
    border: 1px solid #dedede;
}

.ad-static-card-head {
    background: #050505;
    color: #ffffff;
    border-bottom: 4px solid #FEA806;
    padding: 13px 16px;
}

.ad-static-card-head h2 {
    margin: 0;
    font-size: 16px;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.ad-static-card-body {
    padding: 17px 18px 18px;
}

.ad-static-card-body p {
    margin: 0 0 11px;
    color: #222222;
    line-height: 1.55;
    font-weight: 700;
}

.ad-static-card-body p:last-child {
    margin-bottom: 0;
}

.ad-static-card-body ul {
    margin: 8px 0 12px;
    padding-left: 21px;
}

.ad-static-card-body li {
    margin: 0 0 8px;
    color: #222222;
    line-height: 1.45;
    font-weight: 800;
}

.ad-claim-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: 16px;
}

.ad-claim-form {
    display: grid;
    gap: 9px;
    margin: 16px 0 10px;
}

.ad-claim-form label {
    color: #111111;
    font-weight: 1000;
}

.ad-claim-form input {
    width: 100%;
    min-height: 48px;
    border: 1px solid #cfcfcf;
    background: #ffffff;
    color: #111111;
    padding: 10px 12px;
    font-size: 18px;
    font-weight: 900;
}

.ad-claim-form input:focus {
    outline: 3px solid rgba(255, 153, 0, .25);
    border-color: #FEA806;
}

.ad-claim-form button {
    justify-self: start;
    background: #111111;
    color: #ffffff;
    border: 2px solid #FEA806;
    padding: 11px 16px;
    font-weight: 1000;
    cursor: pointer;
}

.ad-claim-form button:hover {
    background: #FEA806;
    color: #111111;
}

.ad-claim-small {
    color: #666666 !important;
    font-size: 13px;
    font-weight: 800 !important;
}

@media (max-width: 760px) {
    .ad-static-shell,
    .ad-account-modern-shell {
        padding-left: 12px;
        padding-right: 12px;
    }

    .ad-static-hero {
        padding: 21px 18px;
    }

    .ad-claim-grid {
        grid-template-columns: 1fr;
    }

    .ad-static-card-body {
        padding: 15px;
    }
}

/* v0.1.24 - FAQ and support ticket system */
.ad-support-shell {
    max-width: 1180px;
}

.ad-support-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
    gap: 16px;
    align-items: start;
}

.ad-support-faq-accordion {
    display: grid;
    gap: 10px;
}

.ad-support-faq-accordion details {
    border: 1px solid #dedede;
    background: #ffffff;
}

.ad-support-faq-accordion summary {
    cursor: pointer;
    list-style: none;
    padding: 14px 42px 14px 14px;
    position: relative;
    color: #111111;
    font-weight: 1000;
    line-height: 1.25;
}

.ad-support-faq-accordion summary::-webkit-details-marker {
    display: none;
}

.ad-support-faq-accordion summary::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    color: #FEA806;
    font-size: 24px;
    font-weight: 1000;
}

.ad-support-faq-accordion details[open] summary {
    background: #111111;
    color: #ffffff;
    border-bottom: 4px solid #FEA806;
}

.ad-support-faq-accordion details[open] summary::after {
    content: '–';
}

.ad-support-faq-accordion details > div {
    padding: 15px;
}

.ad-support-faq-accordion p,
.ad-support-form-intro {
    color: #222222;
    font-weight: 750;
    line-height: 1.5;
}

.ad-support-form {
    display: grid;
    gap: 12px;
}

.ad-support-form-grid.two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.ad-support-form label {
    display: grid;
    gap: 7px;
    color: #111111;
    font-weight: 1000;
}

.ad-support-form label span,
.ad-support-form small {
    color: #666666;
    font-size: 12px;
    font-weight: 800;
}

.ad-support-form input,
.ad-support-form textarea,
.ad-support-form select {
    width: 100%;
    border: 1px solid #cfcfcf;
    background: #ffffff;
    color: #111111;
    padding: 12px;
    font: inherit;
    font-weight: 850;
}

.ad-support-form textarea {
    min-height: 120px;
    resize: vertical;
}

.ad-support-form input:focus,
.ad-support-form textarea:focus,
.ad-support-form select:focus {
    outline: 3px solid rgba(255, 153, 0, .25);
    border-color: #FEA806;
}

.ad-support-form button {
    justify-self: start;
    background: #111111;
    color: #ffffff;
    border: 2px solid #FEA806;
    padding: 12px 18px;
    font-weight: 1000;
    cursor: pointer;
}

.ad-support-form button:hover,
.ad-support-form button:focus-visible {
    background: #FEA806;
    color: #111111;
    outline: none;
}

.ad-support-category-help p {
    margin: 0;
    padding: 11px 12px;
    background: #fff7e8;
    border-left: 5px solid #FEA806;
    color: #111111;
    font-weight: 900;
    line-height: 1.4;
}

.ad-support-dynamic[hidden] {
    display: none !important;
}

@media (max-width: 900px) {
    .ad-support-grid,
    .ad-support-form-grid.two {
        grid-template-columns: 1fr;
    }
}
