#single .featured-image {
    display: flex;
    justify-content: center;
}

#single .featured-image img {
    width: min(100%, 720px);
    height: auto;
    max-height: 420px;
    object-fit: cover;
}

@media (max-width: 767px) {
    #single .featured-image img {
        max-height: 280px;
    }
}

.content-grid-split {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    margin: 2.5rem 0;
}

.content-grid-split .left-col {
    flex: 0 0 30%;
}

.content-grid-split .right-col {
    flex: 1;
}

.content-grid-split .left-col img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: block;
}

@media (max-width: 991px) {
    .content-grid-split {
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .content-grid-split {
        flex-direction: column;
    }
    .content-grid-split .left-col {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

body.dark #single .page-content a {
    color: #7dd3fc !important;
}

body.dark #single .page-content a:hover,
body.dark #single .page-content a:focus,
body.dark #single .page-content a:active {
    color: #bae6fd !important;
}

body.dark #single .page-content a:visited {
    color: #c4b5fd !important;
}

body.dark #single .page-content a::after {
    background-color: currentColor;
    opacity: 0.75;
}
