/* ==========================================
   PAGE HERO
========================================== */

.page-hero {
    padding: 70px 0;
    color: #fff;

    background:
        linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)),
        url('/assets/images/hero/panorama.jpg') center / cover;
}

.page-hero h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
}

.page-hero h1 i {
    margin-right: 12px;
    color: var(--secondary);
}


/* ==========================================
   BREADCRUMB
========================================== */

.breadcrumb {
    padding: 18px 0;
    margin: 0 0 12px;

    font-size: .9rem;
    color: #777;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;

    margin: 0;
    padding: 0;

    list-style: none;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: color .2s ease;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
    color: #666;
    font-weight: 600;
}

.breadcrumb-separator {
    color: #999;
    font-size: .8rem;
}

.breadcrumb .bi-house-door {
    margin-right: .35rem;
}


/* ==========================================
   PAGE
========================================== */

.page {
    padding: 60px 0;
}

.page-content {
    max-width: 1100px;
    margin: 0 auto;
}


/* ==========================================
   PAGE HEADER
========================================== */

.page-header {
    padding: 35px 0;
    margin-bottom: 40px;

    background: #f8f9fb;
    border-bottom: 1px solid #e7e7e7;
}

.page-header h1 {
    margin: 0;

    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 700;
}

.page-header h1 i {
    margin-right: 12px;
    color: var(--secondary);
}


/* ==========================================
   PERSON
========================================== */

.person-card {
    padding: 40px;
    margin-bottom: 40px;

    background: #fff;
    border: 1px solid #e8ecef;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.person-grid {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 40px;
}

.person-photo img {
    display: block;

    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;

    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.person-since {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 18px;

    color: #2e7d32;
    font-weight: 600;

    background: #eef8f1;
    border-radius: 999px;
}


/* ==========================================
   CONTENT SECTION
========================================== */

.content-section {
    margin-bottom: 2.5rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section__title {
    margin: 0 0 1rem;

    font-size: 1.6rem;
    line-height: 1.3;
}

.content-section__text {
    line-height: 1.75;
}

.content-section__text p {
    margin: 0 0 1rem;
}

.content-section__text p:last-child {
    margin-bottom: 0;
}


/* ==========================================
   CONTENT IMAGE
========================================== */

.content-image {
    width: 100%;
    margin: 2.5rem 0;
}

.content-image__figure {
    margin: 0;
}

.content-image__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.content-image__img {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}

.content-image__caption {
    margin-top: .75rem;

    color: #666;
    font-size: .9rem;
    font-style: italic;
    line-height: 1.5;
    text-align: center;
}


/* ==========================================
   CONTENT IMAGE WIDTH
========================================== */

.content-image--small {
    max-width: 320px;
}

.content-image--medium {
    max-width: 500px;
}

.content-image--large {
    max-width: 750px;
}

.content-image--full {
    max-width: none;
}


/* ==========================================
   CONTENT IMAGE ALIGNMENT
========================================== */

.content-image--left {
    margin-right: auto;
    margin-left: 0;
}

.content-image--center {
    margin-right: auto;
    margin-left: auto;
}

.content-image--right {
    margin-right: 0;
    margin-left: auto;
}


/* ==========================================
   CONTENT IMAGE LAYOUTS
========================================== */

.content-image--single {
    display: block;
}

.content-image--2-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.content-image--3-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 768px) {

    .page {
        padding: 40px 0;
    }

    .page-header {
        padding: 25px 0;
        margin-bottom: 30px;
    }

    .page-header h1,
    .page-hero h1 {
        font-size: 1.8rem;
    }

    .person-card {
        padding: 24px;
    }

    .person-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .content-image--small,
    .content-image--medium,
    .content-image--large,
    .content-image--full {
        max-width: 100%;
    }

    .content-image--2-columns,
    .content-image--3-columns {
        grid-template-columns: 1fr;
    }

}
/* ==========================================
   CONTENT QUOTE
========================================== */

.content-quote {
    position: relative;

    margin: 2.5rem 0;
    padding: 2rem 2rem 2rem 4.5rem;

    background: #f8f9fb;
    border-left: 5px solid var(--secondary);
    border-radius: 12px;
}

.content-quote::before {
    content: "“";

    position: absolute;
    top: .5rem;
    left: 1.25rem;

    color: var(--primary);
    font-family: Georgia, serif;
    font-size: 4.5rem;
    line-height: 1;
    opacity: .25;
}

.content-quote__text {
    margin: 0;

    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
}

.content-quote__caption {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;

    margin-top: 1.25rem;

    color: #666;
    font-size: .95rem;
}

.content-quote__author {
    font-weight: 700;
    color: var(--primary);
}

.content-quote__source::before {
    content: "— ";
}

@media (max-width: 768px) {

    .content-quote {
        padding: 1.5rem 1.25rem 1.5rem 3.5rem;
    }

    .content-quote::before {
        left: .9rem;
        font-size: 3.5rem;
    }

    .content-quote__text {
        font-size: 1.05rem;
    }

}
/* ==========================================
   CONTENT NOTICE
========================================== */

.content-notice {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 1rem;

    margin: 2.5rem 0;
    padding: 1.5rem;

    background: #f4f7fb;
    border: 1px solid #dce5ef;
    border-left: 5px solid #3b82c4;
    border-radius: 12px;
}

.content-notice__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 2.75rem;
    height: 2.75rem;

    color: #245f96;
    font-size: 1.4rem;

    background: #e2eef8;
    border-radius: 50%;
}

.content-notice__body {
    min-width: 0;
}

.content-notice__title {
    margin: 0 0 .4rem;

    color: #1f4f78;
    font-size: 1.15rem;
    line-height: 1.35;
}

.content-notice__text {
    color: #334155;
    line-height: 1.65;
}


/* INFO */

.content-notice--info {
    background: #f4f8fc;
    border-color: #d8e6f2;
    border-left-color: #3b82c4;
}

.content-notice--info .content-notice__icon {
    color: #245f96;
    background: #e2eef8;
}


/* SUCCESS */

.content-notice--success {
    background: #f3faf5;
    border-color: #d7ebdc;
    border-left-color: #3a8f4c;
}

.content-notice--success .content-notice__icon {
    color: #2e7d32;
    background: #e1f2e5;
}


/* WARNING */

.content-notice--warning {
    background: #fff9ed;
    border-color: #f0dfb7;
    border-left-color: #d59a22;
}

.content-notice--warning .content-notice__icon {
    color: #a86f00;
    background: #f8eac8;
}


/* HISTORY */

.content-notice--history {
    background: #faf6f1;
    border-color: #eadccd;
    border-left-color: #8b6545;
}

.content-notice--history .content-notice__icon {
    color: #765136;
    background: #eee1d5;
}


/* RESPONSIVE */

@media (max-width: 768px) {

    .content-notice {
        gap: .85rem;
        padding: 1.25rem;
    }

    .content-notice__icon {
        width: 2.4rem;
        height: 2.4rem;
        font-size: 1.2rem;
    }

}
/* ==========================================
   Content Table
========================================== */

.content-table{

    margin:var(--content-spacing) 0;

}

.table-wrapper{

    overflow-x:auto;

}

.content-table table{

    width:100%;
    border-collapse:collapse;

    background:var(--white);

    border-radius:var(--radius);

    overflow:hidden;

    box-shadow:var(--shadow);

}

.content-table th{

    background:var(--primary);
    color:var(--white);

    padding:14px 18px;

    text-align:left;

}

.content-table td{

    padding:14px 18px;

    border-top:1px solid var(--gray);

}

.content-table tbody tr:nth-child(even){

    background:var(--light);

}

.content-table tbody tr:hover{

    background:#eef5fc;

}