.nota-conceptual-single {
    font-family: var(--font-body, 'Lato', sans-serif);
    color: var(--color-ink, #1b1c19);
    padding: 48px 0;
}

.nota-conceptual-single__wrapper {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.nota-conceptual-single__image-col {
    width: 320px;
    flex-shrink: 0;
}

.nota-conceptual-single__img-wrap {
    width: 100%;
    border-radius: var(--radius-md, 9px);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    background: var(--color-bg-light, #eceeee);
}

.nota-conceptual-single__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.nota-conceptual-single__content-col {
    flex: 1;
}

.nota-conceptual-single__title {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-weight: 700;
    font-size: 38px;
    line-height: 1.15;
    margin: 0 0 24px 0;
    color: var(--color-ink, #1b1c19);
}

.nota-conceptual-single__body {
    font-size: 16px;
    line-height: 1.7;
    color: #3b4242;
}

.nota-conceptual-single__body p {
    margin: 0 0 20px 0;
}

.nota-conceptual-single__body p:last-child {
    margin-bottom: 0;
}

/* Breadcrumbs customization to match the site design */
.segib-breadcrumbs {
    font-size: 14px;
    color: var(--color-muted, #707b7b);
}

.segib-breadcrumbs a {
    color: var(--color-muted, #707b7b);
    text-decoration: none;
    transition: color 0.2s ease;
}

.segib-breadcrumbs a:hover {
    color: var(--color-primary, #37bad9) !important;
}

.segib-breadcrumbs .sep {
    margin: 0 8px;
    color: #b7c1c0;
}

.segib-breadcrumbs .current {
    color: var(--color-ink, #1b1c19);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .nota-conceptual-single {
        padding: 32px 0;
    }

    .nota-conceptual-single__wrapper {
        flex-direction: column;
        gap: 32px;
    }

    .nota-conceptual-single__image-col {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .nota-conceptual-single__title {
        font-size: 30px;
        margin-bottom: 20px;
    }
}