/* Videos Home Section Styling - Refined with Outfit Typography */
.videos-home-section {
    background-color: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Background Swirl Pattern */
.videos-swirl-bg {
    position: absolute;
    left: -50px;
    bottom: -50px;
    width: 400px;
    height: 400px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10C30 10 10 30 10 50s20 40 40 40 40-20 40-40-20-40-40-40zm0 70c-16.5 0-30-13.5-30-30s13.5-30 30-30 30 13.5 30 30-13.5 30-30 30zm0-50c-11 0-20 9-20 20s9 20 20 20 20-9 20-20-9-20-20-20z" fill="%23f3eee4" opacity="0.5"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    pointer-events: none;
}

.videos-side-header {
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.side-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    color: #ded5c3;
    line-height: 1.1;
    font-weight: 800; /* Extra bold for Outfit to keep impact */
    margin-bottom: 25px;
    letter-spacing: -0.03em;
}

.view-all-link {
    font-family: 'Outfit', sans-serif;
    color: #cf4824;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: lowercase;
}

/* Video Card Styling */
.wisdom-video-card {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    position: relative;
}

.wisdom-video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.card-thumbnail {
    display: block;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
    width: 100%;
    height: 206px;
    object-fit: cover;
    vertical-align: middle;
    position: relative;
}

.wisdom-video-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-type-indicator-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.card-type-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: #8a8173;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-play-icon {
    color: #cf4824;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.wisdom-card-title-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.card-description-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
}

.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

.card-date {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.card-share-btn {
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
    font-size: 1.1rem;
}

.card-share-btn:hover {
    color: #cf4824;
}

@media (max-width: 991px) {
    .side-title {
        font-size: 2.8rem;
        text-align: center;
    }
    .videos-side-header {
        text-align: center;
        margin-bottom: 50px;
        padding-left: 0;
    }
}
