﻿.lgap_page_hero {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: linear-gradient(135deg, #079457 0%, #0284c7 100%);
    color: #fff;
    margin-bottom: 2rem;
}

.lgap_page_hero .hero_bg_img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.lgap_page_hero .hero_content {
    position: relative;
    padding: 2.5rem 2rem;
}

@media (min-width: 768px) {
    .lgap_page_hero .hero_content {
        padding: 3.5rem 2rem;
    }
}

.lgap_breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .lgap_breadcrumb {
        margin-bottom: 1.5rem;
    }
}

.lgap_breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.lgap_breadcrumb a:hover {
    text-decoration: underline;
}

.lgap_page_title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

@media (min-width: 768px) {
    .lgap_page_title {
        font-size: 2.25rem;
    }
}

.lgap_page_desc {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 48rem;
}

@media (min-width: 768px) {
    .lgap_page_desc {
        margin-top: 1rem;
    }
}

.hero_btns_group {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn_hero_primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
    background: #fff;
    color: #067647;
    padding: 0.5rem 1rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.btn_hero_primary:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: #065f46;
}

.btn_hero_secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.5rem 1rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s;
}

.btn_hero_secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: #fff;
}

.section_title_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section_title_bar {
        margin-bottom: 2rem;
    }
}

.section_title_left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #067647;
}

.section_title_left span {
    font-weight: 600;
}

.section_title_right {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .section_title_right {
        display: flex;
    }
}

.lgap_layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .lgap_layout {
        grid-template-columns: 2fr 1fr;
        gap: 1.5rem;
    }
}

.lgap_list_wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lgap_card {
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    background: #fff;
    overflow: hidden;
    transition: all 0.3s;
}

.lgap_card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.lgap_card_link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.lgap_card_link:hover {
    text-decoration: none;
    color: inherit;
}

.lgap_card_inner {
    display: flex;
    flex-direction: column;
}

@media (min-width: 640px) {
    .lgap_card_inner {
        flex-direction: row;
    }
}

.lgap_card_img {
    width: 100%;
    height: 12rem;
    overflow: hidden;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .lgap_card_img {
        width: 33.333%;
        height: auto;
        min-height: 100%;
    }
}

.lgap_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.lgap_card:hover .lgap_card_img img {
    transform: scale(1.05);
}

.lgap_card_body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lgap_card_title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #121b26;
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lgap_card:hover .lgap_card_title {
    color: #067647;
}

.lgap_card_summary {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lgap_card_meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #6b7280;
}

.lgap_card_date i {
    margin-right: 0.25rem;
    color: #9ca3af;
}

.lgap_card_readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #079457;
    font-weight: 500;
    transition: color 0.3s;
}

.lgap_card_readmore:hover {
    color: #067647;
}

.lgap_pagination {
    margin-top: 1.5rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #4b5563;
}

.lgap_pagination strong {
    color: #121b26;
    margin: 0 0.25rem;
}

.lgap_sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar_card {
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
    background: #fff;
    padding: 1.25rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.sidebar_about_head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.sidebar_icon_box {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: #079457;
    color: #fff;
    flex-shrink: 0;
}

.sidebar_about_title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #121b26;
}

.sidebar_about_desc {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.sidebar_quick_links {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    text-align: center;
}

.sidebar_quick_link {
    display: block;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    padding: 0.5rem 0.25rem;
    color: #4b5563;
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.2s;
}

.sidebar_quick_link:hover {
    border-color: #079457;
    color: #067647;
    text-decoration: none;
}

.sidebar_quick_link i {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.sidebar_card_title {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem 0;
    color: #121b26;
}

.sidebar_card_title i {
    color: #079457;
}

.sidebar_hot_links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.sidebar_hot_link {
    display: block;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
}

.sidebar_hot_link:hover {
    border-color: #079457;
    color: #067647;
    text-decoration: none;
}

.sidebar_contact_list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar_contact_list li {
    font-size: 0.875rem;
    color: #4b5563;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.sidebar_contact_list li i {
    color: #079457;
    margin-right: 0.5rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.lgap_page_body {
    min-height: 100vh;
    background: linear-gradient(180deg, #020917 0%, #101a29 50%, #020917 100%);
    color: #f1f6f9;
    font-family: system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.lgap_page_body ::selection {
    background: rgba(163, 230, 53, 0.3);
    color: #d9f99d;
}

.c_1570 {
    max-width: 1570px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.lgap_main_section {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .lgap_main_section {
        padding-top: 2.5rem;
        padding-bottom: 4rem;
    }
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: fixed;
    top: 1rem;
    left: 1rem;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    background: #079457;
    color: #fff;
    z-index: 9999;
    text-decoration: none;
    border-radius: 0.25rem;
}

/* 301139 */
:root {
    line-break: strict;
}
.93a8431 {
    tab-size: 4;
}
