/*.authors-list .text-block{*/
/*    height: 190px;*/
/*    overflow: hidden;*/
/*}*/
/*.authors-list .h3{*/
/*    display: block;*/
/*    height: 60px;*/
/*    overflow: hidden;*/
/*}*/
/*.authors-list .img-wrap{*/
/*    height: 80px;*/
/*    width: 80px;*/
/*    border-radius: 50%;*/
/*    overflow: hidden;*/
/*    display: inline-block;*/
/*    margin-bottom: 30px;*/
/*    background-size: cover;*/
/*    position: relative;*/
/*}*/
/*.authors-list .img-wrap svg{*/
/*    width:50px;*/
/*    position: absolute;*/
/*    left: 50%;*/
/*    top: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    opacity: .1;*/
/*    transition: opacity .3s ease;*/
/*    pointer-events: none;*/
/*}*/
/*.authors-list .img-wrap:hover svg{*/
/*    opacity: .7*/
/*}*/
/*.social-height{*/
/*    height: 40px;*/
/*}*/

:root {
    --orange: #ff6b35;
    --orange-dark: #e85a2a;
    --blue: #3498db;
    --blue-dark: #2980b9;
    --dark: #222;
    --gray: #666;
    --light-gray: #888;
    --bg-light: #fafafa;
}

/* Hero Section */
.hero-about {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 80px 0 60px;
    position: relative;
    border-bottom: 3px solid var(--orange);
}

.hero-about .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.mission-section ul{
    text-align: left;
    display: inline-block;
}
.hero-about h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-about .subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-about hr {
    width: 60px;
    border: none;
    height: 3px;
    background: var(--blue);
    margin: 0 auto 30px;
    border-radius: 2px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.1s forwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
    padding-top: 30px;
    border-top: 1px solid #eee;
    max-width: 700px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--orange);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--blue));
    margin: 0 auto 25px;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    margin-bottom: 20px;
}

.mission-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.mission-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.mission-card .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.4s ease;
}

.mission-card:hover .icon {
    transform: scale(1.1);
}

.mission-card .icon .mdi {
    font-size: 42px;
    color: var(--blue);
}

.mission-card h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #eee;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 10;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.team-card-image {
    position: relative;
    height: 360px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.08);
}

.team-card-image .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-card-image .overlay {
    opacity: 1;
}

.team-card-image .social-links {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.team-card:hover .team-card-image .social-links {
    opacity: 1;
    transform: translateY(0);
}

.team-card-image .social-links a {
    width: 40px;
    height: 40px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-card-image .social-links a:hover {
    background: var(--blue);
    transform: scale(1.15);
}

.team-card-content {
    padding: 25px;
    text-align: center;
}

.team-card-content h4 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-card-content .role {
    color: var(--light-gray);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(52, 152, 219, 0.3);
    display: inline-block;
}

.team-card-content p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.team-card-content .read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.team-card-content .read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.team-card-content .read-more:hover {
    color: var(--orange);
}

.team-card-content .read-more:hover::after {
    width: 100%;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #333 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--blue));
}

.cta-section .h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.cta-section .btn-cta {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.cta-section .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}
.mdi-tiktok{
    background-image: url("/img/tiktok-white-100.png");
    background-repeat: no-repeat;
    display: block;
    background-size: contain;
    width: 22px;
    height: 22px;
}
/* Responsive */
@media (max-width: 768px) {
    .team-card-image .social-links {
        opacity: 1;
        transform: translateY(0);
    }
    .hero-about {
        padding: 50px 0 40px;
    }

    .hero-about h1 {
        font-size: 2rem;
    }

    .hero-about .subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .section-header .h2 {
        font-size: 1.6rem;
    }

    .mission-cards {
        padding: 0 15px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}
@media (min-width: 960px) {
    body:not(.light-headered):not(.index-page):not(.spectacular) {
        padding-top: 110px;
    }
}