.latest-news-wrapper {
    text-align: center;
    margin: 30px auto;
    max-width: 900px;
}
.latest-news-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}
.latest-news-wrapper .latest-news-headline {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-top: 10px;
}
.latest-news-wrapper .latest-news-headline a {
    text-decoration: underline;
    color: #000;
}



.headlines-wrapper {
    max-width: 1100px;
    margin: 30px auto;
}
.headlines-wrapper .headlines-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid #c00;
    margin-bottom: 15px;
    display: inline-block;
    padding-bottom: 3px;
}
.headlines-wrapper .headlines-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.headlines-wrapper .headline-item {
    margin-bottom: 12px;
}
.headlines-wrapper .headline-item a {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}
.headlines-wrapper .headline-item a:hover {
    color: #c00;
}
.headlines-wrapper .headline-thumb {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
}
.headlines-wrapper .headline-thumb img {
    width: 120px;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
}
.headlines-wrapper .headline-thumb a {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}
.headlines-wrapper .headline-thumb a:hover {
    color: #c00;
}
@media(max-width: 768px) {
    .headlines-wrapper .headlines-grid {
        grid-template-columns: 1fr;
    }
}



.news-list-wrapper {
    max-width: 600px;
    margin: 30px auto;
}
.news-list-wrapper .news-list-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid #c00;
    margin-bottom: 15px;
    display: inline-block;
    padding-bottom: 3px;
}
.news-list-wrapper .news-list-item {
    margin-bottom: 12px;
}
.news-list-wrapper .news-list-item a {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}
.news-list-wrapper .news-list-item a:hover {
    color: #c00;
}





.ghl-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.ghl-section-header h2 {
    font-size: 24px;
    color: #111;
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ghl-left-bar {
    display: inline-block;
    width: 5px;
    height: 22px;
    background: #d90429;
    border-radius: 2px;
}

/*.ghl-view-more {
    font-size: 14px;
    color: #3c3c3c;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.ghl-view-more:hover {
    color: #005177;
    text-decoration: underline;
}
*/

.ghl-view-more  {
    font-size: 13px;
    padding: 6px 16px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 25px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
     text-decoration: underline;
}

.ghl-view-more:hover {
    background: #f3f3f3;
    border-color: #ccc;
    color: #000;
}


.ghl-history-layout .ghl-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px 0;
}

/* Post Box */
.ghl-history-layout .ghl-post-box {
    display: flex;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.07);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.ghl-history-layout .ghl-post-box:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Thumbnail */
.ghl-history-layout .ghl-post-thumb {
    flex-shrink: 0;
}

.ghl-history-layout .ghl-post-thumb img {
    width: 260px;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Content */
.ghl-history-layout .ghl-post-content {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.ghl-history-layout .ghl-cat {
    display: inline-block;
    background: #111111;
    color: #ffffff;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Title */
.ghl-history-layout .ghl-title {
    font-size: 18px;
    margin: 0 0 10px;
    color: #111;
    font-weight: 700;
    line-height: 1.4;
}

.ghl-history-layout .ghl-title a {
    color: inherit;
    text-decoration: none;
}

.ghl-history-layout .ghl-title a:hover {
    color: #db2222;
}

.ghl-history-layout .ghl-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}

.ghl-history-layout .ghl-excerpt {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ghl-history-layout .ghl-post-box {
        flex-direction: column;
    }

    .ghl-history-layout .ghl-post-thumb img {
        width: 100%;
        height: auto;
    }

    .ghl-history-layout .ghl-post-content {
        padding: 15px;
    }
}







.catblock-section {
    margin: 30px 0;
}
.catblock-section .catblock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.catblock-section .catblock-header h2 {
    font-size: 28px;
    font-weight: bold;
}

.catblock-section .catblock-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.catblock-section .catblock-grid .catblock-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
}
.catblock-section .catblock-grid .catblock-card .catblock-thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.catblock-section .catblock-grid .catblock-card .catblock-content {
    padding: 15px;
}


.catblock-section .catblock-grid .catblock-card .catblock-content h3,
.catblock-section .catblock-grid .catblock-card .catblock-content h6 {
    font-size: 18px;
    margin: 0 0 10px;
}

.catblock-section .catblock-grid .catblock-card .catblock-content h3 a,
.catblock-section .catblock-grid .catblock-card .catblock-content h6 a {
    color: inherit;
    text-decoration: none;
}

.catblock-section .catblock-grid .catblock-card .catblock-content h3 a:hover,
.catblock-section .catblock-grid .catblock-card .catblock-content h6 a:hover {
    color: #db2222;
}

.catblock-section .catblock-grid .catblock-card .catblock-content .catblock-meta {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}
