/* 
=====================
   Blog Page Styling:
=====================
 */

.blog-page-section {
    padding: 90px 0;
    background-color: #f9f9f9;
}

.section-main-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--primary-blue, #0A192F);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-main-title::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary-gold, #C49B3B);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Blog Card Styling */
.blog-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-gold, #C49B3B);
}

/* Image Wrapper with Zoom Animation */
.blog-img-wrapper {
    width: 100%;
    height: 230px;
    overflow: hidden;
    position: relative;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

/* Card Content */
.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #777777;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-meta i {
    color: var(--primary-gold, #C49B3B);
    margin-right: 5px;
}

.blog-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--primary-blue, #0A192F);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary-gold, #C49B3B);
}

.blog-excerpt {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Read More Button */
.btn-read-more {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--primary-gold, #C49B3B) !important;
    background: transparent;
    border: 2px solid var(--primary-gold, #C49B3B);
    padding: 10px 20px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
    cursor: pointer;
}

.btn-read-more:hover {
    background: var(--primary-gold, #C49B3B);
    color: #ffffff !important;
}

/* --- Premium Modal (Popup) Styling --- */
.modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.modal-header {
    background-color: var(--primary-blue, #0A192F);
    color: #ffffff;
    border-bottom: 3px solid var(--primary-gold, #C49B3B);
    padding: 20px 25px;
}

.modal-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-body {
    padding: 30px;
}

.modal-featured-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.modal-blog-meta {
    background: #f1f1f1;
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #555555;
    display: flex;
    gap: 20px;
}

.modal-blog-meta i {
    color: var(--primary-gold, #C49B3B);
    margin-right: 5px;
}

.modal-body p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.modal-footer {
    border-top: 1px solid #eaeaea;
    padding: 15px 25px;
}