.gk-fullwidth-posts {
    width: 100%;
    margin: 20px 0;
}

.gk-post {
    margin-bottom: 40px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.gk-post-title {
        font-size: 60px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    font-family: mukta;
    color: darkblue;
    padding-left: 50px;
    padding-right: 50px;
}
}

.gk-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.gk-author-avatar img {
    border-radius: 50%;
}

.gk-time i,
.gk-comments i {
    margin-right: 5px;
    color: #000;
}


/* Featured Image Styling (center + max width) */
.gk-fullwidth-posts .gk-featured-img {
    display: flex;
    justify-content: center; /* center horizontally */
}

.gk-fullwidth-posts .gk-featured-img img {
    max-width: 1100px !important; /* prevent stretching beyond 1200px */
    width: 100% !important;       /* responsive scaling */
    height: auto !important;
    border-radius: 12px !important;
    display: block;
    margin: 0 auto; /* extra centering for safety */
}


.gk-excerpt {
   font-size: 18px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    margin-bottom: 10px;
    font-family: 'Mukta';
    text-align: center;
}

/* ========== META INFO BAR ========== */
.gk-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
    color: #000;
    margin-bottom: 15px;
}

/* Author avatar (circular image) */
.gk-meta .gk-author-avatar img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

/* Author name */
.gk-meta .gk-author-name {
    font-weight: 500;
    color: #000;
	font-family:mukta;
}

/* Time info */
.gk-meta .gk-time {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #000;
	font-family:mukta;
}
.gk-meta .gk-time i {
    color: #000;
    font-size: 18px;
	
}

/* Comments info */
.gk-meta .gk-comments {
    display: flex;
    align-items: center;
    gap: 5px;
    color: blue;
	font-family:mukta;
}
.gk-meta .gk-comments i {
    color: blue;
    font-size: 18px;
	
}

.gk-post-title a {
    text-decoration: none;
    color: inherit; /* keep same color as title */
}

.gk-post-title a:hover {
    color: #0073aa; /* WP blue hover */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .gk-post-title {
        font-size: 1.6em;  /* tablets */
    }
}


/* Responsive for tablets */
@media (max-width: 992px) {
    .gk-fullwidth-posts .gk-post-title {
        font-size: 1.6em !important;
    }
}

/* Responsive for mobile */
@media (max-width: 600px) {
    .gk-fullwidth-posts .gk-post-title {
        font-size: 1.3em !important;
    }
}
