/* Added mobile nav open state styles */
.mobile-nav.open {
    display: flex;
    animation: fadeSlideDown 150ms ease;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

:root {
    --stf-text-primary: #2c1810;
    --stf-text-secondary: #5d4037;
    --stf-shadow-light: rgba(139, 69, 19, 0.1);
    --stf-shadow-medium: rgba(139, 69, 19, 0.22);
    --stf-header-height: 70px;
}

[data-theme="dark"] {
    --stf-text-primary: #fbe6d8;
    --stf-text-secondary: #e2c3a5;
    --stf-shadow-light: rgba(0, 0, 0, 0.24);
    --stf-shadow-medium: rgba(0, 0, 0, 0.38);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background: var(--stf-bg);
    color: var(--stf-text-primary);
}

a {
    color: var(--stf-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

    a:hover,
    a:focus-visible {
        color: var(--stf-primary-dark);
    }

.app-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--stf-bg);
}

.app-header {
    background: var(--stf-surface);
    border-bottom: 1px solid var(--stf-border);
    box-shadow: 0 12px 30px var(--stf-shadow-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--stf-header-height);
    gap: 1rem;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--stf-primary);
    font-weight: 600;
    font-size: 1.125rem;
}

.logo-text {
    font-weight: 600;
    color: #FFF;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--stf-primary), var(--stf-accent));
    box-shadow: 0 12px 22px var(--stf-shadow-light);
}

.desktop-nav {
    display: none;
    gap: 2rem;
    align-items: center;
}

.app-header .nav-link {
    font-weight: 500;
    color: var(--stf-text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

    .app-header .nav-link:hover,
    .app-header .nav-link:focus-visible {
        color: var(--stf-primary);
    }

.header-right {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.search-form {
    display: none;
}

.search-input-wrapper {
    position: relative;
}

.search-input {
    padding: 0.5rem 2.75rem 0.5rem 1rem;
    border: 1px solid var(--stf-border);
    border-radius: 8px;
    background: var(--stf-surface);
    font-size: 0.9rem;
    color: var(--stf-text-primary);
    min-width: 220px;
}

    .search-input:focus {
        outline: none;
        border-color: var(--stf-accent);
        box-shadow: 0 0 0 3px rgba(var(--stf-accent-rgb), 0.2);
    }

.search-button {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--stf-text-secondary);
    cursor: pointer;
    font-size: 0.95rem;
}

.theme-toggle,
.mobile-menu-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    color: var(--stf-text-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .theme-toggle:hover,
    .mobile-menu-toggle:hover,
    .theme-toggle:focus-visible,
    .mobile-menu-toggle:focus-visible {
        background: rgba(var(--stf-primary-rgb), 0.08);
    }

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--stf-text-secondary);
    border-radius: 12px;
}

.sign-in-link {
    background: var(--stf-primary);
    color: #fff;
    padding: 0.55rem 1.3rem;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .sign-in-link:hover,
    .sign-in-link:focus-visible {
        background: var(--stf-primary-dark);
        color: #fff;
        transform: translateY(-1px);
    }

.sign-out-link {
    background: none;
    color: var(--stf-text-secondary);
    padding: 0;
}

.account-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.account-link {
    color: var(--stf-text-secondary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

    .account-link:hover,
    .account-link:focus-visible {
        color: var(--stf-primary);
    }

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: var(--stf-surface);
    border-bottom: 1px solid var(--stf-border);
}

    .mobile-nav.open {
        display: flex;
        animation: fadeSlideDown 150ms ease;
    }

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav .nav-link {
    color: var(--stf-text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.app-main {
    flex: 1;
    padding-bottom: 4rem;
}

.page-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.home-page {
    max-width: none;
    padding: 0;
}

.hero-section {
    background: linear-gradient(135deg, var(--stf-surface) 0%, var(--stf-bg) 100%);
    padding: 4.5rem 1rem;
    position: relative;
    overflow: hidden;
}

.stone-texture::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238b4513' fill-opacity='0.04'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.35;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.hero-text {
    max-width: 640px;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1rem;
}

.hero-accent {
    color: var(--stf-primary);
    display: block;
}

.hero-subtitle {
    color: var(--stf-text-secondary);
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--stf-text-secondary);
    margin: 0 auto 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.stf-button {
    padding: 0.75rem 1.6rem;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .stf-button i {
        font-size: 1.05rem;
    }

.stf-button-primary {
    background: var(--stf-primary);
    color: #fff;
    box-shadow: 0 14px 26px var(--stf-shadow-light);
}

    .stf-button-primary:hover,
    .stf-button-primary:focus-visible {
        background: var(--stf-primary-dark);
        transform: translateY(-1px);
    }

.stf-button-outline {
    background: transparent;
    border: 2px solid var(--stf-primary);
    color: var(--stf-primary);
}

    .stf-button-outline:hover,
    .stf-button-outline:focus-visible {
        background: var(--stf-primary);
        color: #fff;
        transform: translateY(-1px);
    }

.hero-visual {
    display: flex;
    justify-content: center;
}

.full-bleed {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--stf-primary), var(--stf-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
    box-shadow: 0 18px 34px var(--stf-shadow-medium);
}

.next-gathering {
    margin-top: 2rem;
    display: inline-flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background: rgba(var(--stf-accent-rgb), 0.1);
    color: var(--stf-text-secondary);
    box-shadow: 0 14px 30px var(--stf-shadow-light);
}

    .next-gathering i {
        font-size: 1.25rem;
        margin-top: 0.1rem;
        color: var(--stf-primary);
    }

.next-gathering-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
    color: var(--stf-text-secondary);
}

.next-gathering-title {
    margin: 0.3rem 0 0.15rem;
    font-weight: 600;
    color: var(--stf-text-primary);
}

.next-gathering-meta {
    margin: 0;
    font-size: 0.9rem;
    color: var(--stf-text-secondary);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.featured-section,
.posts-section {
    padding: 2rem 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.section-title-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--stf-primary);
}

    .section-title-group i {
        font-size: 1.5rem;
    }

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: var(--stf-text-primary);
}

.section-link {
    font-weight: 600;
}

.stf-card {
    background: var(--stf-surface);
    border-radius: 12px;
    border: 1px solid var(--stf-border);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stf-card-interactive:hover,
.stf-card-interactive:focus-within {
    transform: translateY(-3px);
    box-shadow: 0 20px 36px var(--stf-shadow-medium);
}

.stf-card-header,
.stf-card-content,
.stf-card-footer {
    padding: 1.5rem;
}

.series-scroll-container {
    position: relative;
    margin-bottom: 2rem;
}

.series-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
}

.series-card {
    min-width: 320px;
    scroll-snap-align: start;
}

.series-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stf-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stf-badge-teaching {
    background: rgba(var(--stf-primary-rgb), 0.12);
    color: var(--stf-primary);
}

.stf-badge-devotional {
    background: rgba(34, 139, 34, 0.12);
    color: #1f7a1f;
}

.stf-badge-video {
    background: rgba(25, 118, 210, 0.12);
    color: #196fd2;
}

.series-progress {
    font-weight: 600;
    color: var(--stf-text-secondary);
}

.series-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
}

.series-link {
    color: inherit;
}

    .series-link:hover,
    .series-link:focus-visible {
        color: var(--stf-primary);
    }

.series-description {
    margin: 0 0 1rem;
    color: var(--stf-text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.series-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--stf-text-secondary);
}

.series-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--stf-primary);
}

    .series-cta:hover,
    .series-cta:focus-visible {
        text-decoration: underline;
    }

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-date {
    font-size: 0.9rem;
    color: var(--stf-text-secondary);
}

.post-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
}

.post-link {
    color: inherit;
}

    .post-link:hover,
    .post-link:focus-visible {
        color: var(--stf-primary);
    }

.post-excerpt {
    margin: 0;
    color: var(--stf-text-secondary);
}

.post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--stf-text-secondary);
}

.posts-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.loading-state,
.empty-state {
    background: rgba(var(--stf-primary-rgb), 0.06);
    color: var(--stf-text-secondary);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 1px dashed var(--stf-border);
    text-align: center;
}

.community-section {
    background: var(--stf-primary);
    color: #fff;
    padding: 4.5rem 0;
    position: relative;
}

    .community-section .stone-texture::before {
        opacity: 0.1;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM36 6V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    }

.community-content {
    text-align: center;
}

    .community-content i {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

.community-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 0;
    font-weight: 700;
}

.community-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 640px;
    margin: 1rem auto 0;
}

.community-stats {
    margin: 3rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.85;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.community-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.app-footer {
    background: var(--stf-text-primary);
    color: #fff;
    padding: 2.5rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.footer-logo-img {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--stf-primary), var(--stf-accent));
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.footer-meta {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
}

.footer-copy {
    margin: 0;
    opacity: 0.8;
}

.footer-feeds {
    display: flex;
    gap: 1.25rem;
}

.post-body {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: var(--stf-text-secondary);
}

    .post-body h2,
    .post-body h3,
    .post-body h4 {
        margin-top: 2rem;
        color: var(--stf-text-primary);
    }

    .post-body a {
        color: var(--stf-primary);
        text-decoration: underline;
    }

        .post-body a:hover,
        .post-body a:focus-visible {
            color: var(--stf-primary-dark);
        }

.video-embed {
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

    .video-embed iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.alert {
    padding: 0.85rem 1.1rem;
    border-radius: 10px;
    background: rgba(var(--stf-accent-rgb), 0.12);
    border: 1px solid rgba(var(--stf-accent-rgb), 0.3);
    color: var(--stf-text-secondary);
}

.admin-nav {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

    .admin-table th,
    .admin-table td {
        padding: 0.75rem;
        border-bottom: 1px solid var(--stf-border);
    }

form .field {
    margin-bottom: 1rem;
}

form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

form input[type="text"],
form input[type="email"],
form input[type="datetime-local"],
form textarea,
form select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    border: 1px solid var(--stf-border);
    font-size: 1rem;
    background: var(--stf-surface);
    color: var(--stf-text-primary);
}

form textarea {
    min-height: 140px;
}

button.primary {
    background: var(--stf-primary);
    color: #fff;
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
}

button.secondary {
    background: transparent;
    border: 1px solid var(--stf-primary);
    color: var(--stf-primary);
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .search-form {
        display: block;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .hero-text {
        flex: 1;
    }

    .hero-visual {
        margin-top: 0;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-meta {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .series-scroll {
        scroll-snap-type: none;
    }

    .series-card {
        min-width: 280px;
    }

    .community-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.1rem;
    }
}

/* Video thumbnail styles for cards */
.post-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px 12px 0 0;
}

.post-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-thumbnail-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

    .post-thumbnail-overlay i {
        font-size: 3rem;
        color: #fff;
        opacity: 0.9;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

.stf-card-interactive:hover .post-thumbnail-overlay {
    background: rgba(0, 0, 0, 0.5);
}

    .stf-card-interactive:hover .post-thumbnail-overlay i {
        transform: scale(1.1);
        opacity: 1;
    }

/* Video thumbnail styles for list view */
.post-list-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

    .post-list-thumbnail a {
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
    }

.post-list-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-list-thumbnail-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

    .post-list-thumbnail-overlay i {
        color: #fff;
        opacity: 0.9;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

.post-list-thumbnail a:hover .post-list-thumbnail-overlay {
    background: rgba(0, 0, 0, 0.5);
}

    .post-list-thumbnail a:hover .post-list-thumbnail-overlay i {
        transform: scale(1.1);
        opacity: 1;
    }

/* Video thumbnail styles for admin cards */
.video-admin-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.video-admin-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-admin-thumbnail-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

    .video-admin-thumbnail-overlay i {
        color: #fff;
        opacity: 0.85;
    }

/* Video card thumbnail for grid layout */
.video-card-thumbnail-link {
    display: block;
    text-decoration: none;
}

.video-card-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.video-card-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.video-card-thumbnail-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

    .video-card-thumbnail-overlay i {
        color: #fff;
        opacity: 0.9;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

.video-card-thumbnail-link:hover .video-card-thumbnail-img {
    transform: scale(1.05);
}

.video-card-thumbnail-link:hover .video-card-thumbnail-overlay {
    background: rgba(0, 0, 0, 0.5);
}

    .video-card-thumbnail-link:hover .video-card-thumbnail-overlay i {
        transform: scale(1.15);
        opacity: 1;
    }

.form-control:disabled {
    background-color: rgba(34,47,62,.2);
    opacity: 1;
}

.text-body-secondary {
    color: var(--stf-text-secondary) !important;
}
