/* Custom Horizontal Blog Card Stylesheet */

.insights-section{
    padding:60px 0;
}

.insights-section .headding-wrap{
  text-align: center;
}
.insights-section .subtitle{
    display:inline-block;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    color:#2b6cb0;
    text-transform:uppercase;
    margin-bottom:8px;
}

.insights-section .title{
    font-size:42px;
    font-weight:700;
    color:#0f172a;
    line-height:1.2;
    margin-bottom:8px;
}

.insights-section .description{
    font-size:18px;
    color:#6b7280;
    line-height:1.6;
}

.fync-custom-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.fync-custom-card.fync-no-image{
    grid-template-columns: 100%;
}

.fync-custom-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Left side - Featured Image */
.fync-card-image-link {
    min-height: 240px;
    display: block;
    position: relative;
    overflow: hidden;
}

.fync-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    aspect-ratio: 100 / 80
}

.fync-custom-card:hover .fync-card-image {
    transform: scale(1.03);
}

/* Right side - Content wrapper */
.fync-card-content {
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Date */
.fync-card-date {
    font-size: 14px;
    color: #1a73e8;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: capitalize;
}

/* Title */
.fync-card-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px 0;
}

.fync-card-title a {
    color: #111111;
    text-decoration: none;
    transition: color 0.15s ease;
    box-shadow: none !important;
}

.fync-card-title a:hover {
    color: #1a73e8;
}

/* Excerpt */
.fync-card-excerpt {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Footer Section */
.fync-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    flex-wrap: wrap;
    gap: 16px;
    border-top: none;
    padding-top: 0;
}

/* Author Section */
.fync-author-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fync-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e2e8f0;
}

.fync-author-info {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    line-height: 1.4;
    color: #718096;
}

.fync-author-name {
    font-size: 14px;
    color: #2d3748;
    font-weight: 700;
}

/*.fync-author-name strong {
    font-weight: 700;
    color: #1a202c;
}*/

.fync-author-designation {
    font-weight: 500;
}

.fync-author-meta-tags {
    color: #a0aec0;
}

/* CTA Button */
.fync-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid #d2e3fc;
    background-color: #f4f8fe;
    color: #1a73e8 !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: none !important;
}

.fync-cta-button:hover {
    background-color: #1a73e8;
    color: #ffffff !important;
    border-color: #1a73e8;
}

.fync-cta-button svg {
    transition: transform 0.2s ease;
}

.fync-cta-button:hover svg.fync-arrow-icon {
    transform: translateX(3px);
}

/* Responsiveness */

@media (max-width: 768px) {
    .fync-custom-card{
        grid-template-columns: 100%;
    }
    .fync-card-image{
        aspect-ratio: 128/73;
    }
    .fync-card-content {
        padding: 20px;
    }
    
    .fync-card-footer {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .fync-cta-button {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }
}






/* Single Post Page Custom Styles */

.ast-single-post .site-content article.ast-article-single{
    background-color: transparent;
    padding: 0;
}

/* Breadcrumbs */
.fync-breadcrumbs {
    font-size: 13px;
    color: #718096;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fync-breadcrumbs a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.15s ease;
    box-shadow: none !important;
}

.fync-breadcrumbs a:hover {
    color: #1557b0;
    text-decoration: underline;
}

.fync-breadcrumbs .fync-current-post {
    color: #4a5568;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

/* Title */
.fync-single-title {
    font-size: 38px;
    font-weight: 800;
    color: #111827;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

/* Meta Section (Author + Post Details) */
.fync-single-meta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 500px;
}

.fync-single-author-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fync-single-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e2e8f0;
}

.fync-single-author-info {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    line-height: 1.45;
    color: #4a5568;
}

.fync-single-author-name {
    font-size: 14px;
    color: #1a202c;
    font-weight: 700;
}

/*.fync-single-author-name strong {
    font-weight: 700;
    color: #111827;
}*/

.fync-single-author-designation {
    font-weight: 500;
}

.fync-single-author-meta-tags {
    color: #718096;
}

.fync-single-post-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: #4a5568;
    font-weight: 500;
}

.fync-single-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fync-single-meta-item svg {
    color: #1a73e8;
}

/* Featured Image */
.fync-single-featured-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.fync-single-featured-image {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

/* Post Content styling */
.fync-single-entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 45px;
}

.fync-single-entry-content p {
    margin-bottom: 24px;
}

.fync-single-entry-content h2,
.fync-single-entry-content h3 {
    font-weight: 700;
    color: #111827;
    margin-top: 40px;
    margin-bottom: 16px;
}

/* Bottom Consultation CTA Banner */
.fync-single-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f4f8fe;
    border: 1px solid #d2e3fc;
    border-radius: 12px;
    padding: 24px 30px;
    margin-top: 50px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.fync-single-cta-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 280px;
}

.fync-single-cta-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #e8f0fe;
    border-radius: 50%;
    color: #1a73e8;
    flex-shrink: 0;
}

.fync-single-cta-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.fync-single-cta-text p {
    font-size: 14px;
    color: #4a5568;
    margin: 0;
    line-height: 1.4;
}

.fync-single-cta-right {
    flex-shrink: 0;
}

.fync-cta-solid-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #1a73e8;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    box-shadow: none !important;
    border: none;
}

.fync-cta-solid-button:hover {
    background-color: #1557b0;
    color: #ffffff !important;
}

.fync-cta-solid-button svg {
    transition: transform 0.2s ease;
}

.fync-cta-solid-button:hover svg.fync-arrow-icon {
    transform: translateX(3px);
}

/* Responsiveness for single post page */
@media (min-width: 922px) {
        .ast-narrow-container .site-content > .ast-container {
            max-width: 1240px;
        }
}

@media (max-width: 768px) {
    .fync-single-title {
        font-size: 28px;
    }
    
    .fync-single-meta-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .fync-single-cta-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }
    
    .fync-single-cta-left {
        min-width: unset;
    }
    
    .fync-cta-solid-button {
        width: 100%;
        justify-content: center;
    }
}

