.nav-link {
    background-color: white;
    color: #666;
}

.nav-tabs .nav-link.active {
    border: 0;
    border-bottom: 2px solid #000;
    color: #111;
    font-weight: 400;
}

.nav-tabs {
    border-bottom: 0;
}

.special-card {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
}

.special-card-image {
    width: 100%;
    height: 100%;
}

.special-card-image img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-card-tag {
    background-color: white;
    top: 8px;
    left: 8px;
    padding: 4px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
}

.special-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    color: white;
}

.special-card-title {
    font-size: 24px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 1em;
}

.special-card-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3em;
}

.section_inside_post {
    padding: 60px 0;
}

.secondary-post .description-2-lines {
    -webkit-line-clamp: unset;
    min-height: 12em;
}

.secondary-post {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.secondary-post .special-card {
    flex: 1;
}

.secondary-post .special-card-description {
    display: none;
}

.secondary-post .special-card-title {
    font-size: 16px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2em;
}

.secondary-post .special-card-content {
    padding: 12px;  
}

@media (max-width: 768px) {
    .section_inside_post {
        padding: 32px 0;
    }
}