/* Shared inner-page layout (about, contact, shop, etc.) */
.page-modern {
    background: #f8fafc;
}

.page-hero {
    position: relative;
    padding: 85px 0 70px;
    background: linear-gradient(120deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(248, 184, 78, 0.2);
    top: -95px;
    right: -80px;
}

.page-hero h1 {
    color: #fff;
    font-size: 44px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.page-hero p {
    color: #cbd5e1;
    margin: 0;
    max-width: 560px;
}

.page-breadcrumb {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
    color: #cbd5e1;
}

.page-breadcrumb a {
    color: #f8b84e;
}

@media (max-width: 991px) {
    .page-hero {
        padding: 75px 0 60px;
    }

    .page-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 60px 0 45px;
    }

    .page-hero h1 {
        font-size: 30px;
    }

    .page-breadcrumb {
        justify-content: flex-start;
        margin-top: 10px;
    }
}
