.doc { display: none; }
.doc.active { display: block; }
#content { top: 0 !important; }
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--colorBG);
    color: var(--colorNV);
}

header {
    background: var(--colorNV);
    color: white;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .TitlePageName {
    color: white;
    font-weight: 700;
    font-size: 22px;
    background: none;
    text-decoration: none;
    border: none;
} header .TitlePageName:hover { cursor: pointer; }

header nav button {
    color: #cbd5e1;
    margin-left: 20px;
    text-decoration: none;
    background: none;
    border: none;
    font-size: 14px;
    transition: 0.2s;
}

header nav button:hover {
    color: white;
    cursor: pointer;
}

#CloseNavbarDOC {
    display: none;
    position: absolute;
    top: 0; right: 40px;
    font-size: 30px;
    width: 50px; height: 50px;
    color: var(--greatGREY);
    opacity: 60%;
}

#displayONLYresponsiveDOC {
    display: none;
    text-align: center;
    font-size: 11px;
    color: white;
    opacity: 40%;
    position: absolute;
    bottom: 200px;
}

.responsivenavbarDOC {
    color: white;
    display: none;
    font-size: 30px;
    background: none;
    border: none;
}

.responsivenavbarDOC:hover, #CloseNavbarDOC:hover { cursor: pointer; }

.hero {
    text-align: center;
    background: linear-gradient(to right, var(--colorNV), var(--colorFTR));
    color: white;
    border-radius: 20px;
    box-shadow: var(--boxshadowOFFICIAL);
    padding: 80px 48px; margin-bottom: 80px;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.hero p {
    font-size: 18px;
    opacity: 0.85;
}

.container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 48px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
}

.card .contentimg {
    width: 100%; height: 180px;
    border-bottom: 1px solid var(--greatGREY);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.card-content {
    padding: 24px;
}

.card-content button {
    color: var(--colorNV);
    text-decoration: underline;
    background: none;
    border: none;
    font-size: 16px;
} .card-content button:hover {
    text-decoration: none;
    opacity: 60%;
    cursor: pointer;
}

.tag {
    display: inline-block;
    background: #e2e8f0;
    color: #0f172a;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.card p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: initial;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card a {
    text-decoration: none;
    font-weight: 500;
    color: #2563eb;
}

.important_changeCLSBTN {
    all: unset;
    color: var(--colorNV) !important;
    text-decoration: underline !important;
    font-size: 18px;
} .important_changeCLSBTN:hover {
    cursor: pointer;
    text-decoration: none !important;
    opacity: 60%;
}

footer {
    position: relative;
    bottom: 0;
    text-align: center;
    padding: 40px;
}

footer span {
    color: #64748b;
    font-size: 14px;
}

@media screen and (max-width:1100px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
     .responsivenavbarDOC, #CloseNavbarDOC {
        display: block;
     }
     #displayONLYresponsiveDOC { display: flex; }
     header nav {
        display: none;
     }
     nav {
        position: fixed;
        top: 0; right: 0;
        width: 100%; height: 100%;
        background: var(--colorNV);
        z-index: 999 !important;
        display: flex;
        flex-direction: column;
        padding-top: 200px;
     }
    header nav button {
        color: #cbd5e1;
        margin: 20px auto;
        font-size: 24px;
        transition: 0.2s;
    }
}

@media screen and (max-width:680px) {
    .grid { grid-template-columns: repeat(1, 1fr); }
}

@media screen and (max-width:425px) {
    .container { padding: 0 5%; }
}

@media screen and (max-width: 340px) {
    #deletedItem2759 { display: none; }
}
