.mascot-cv-section {
    padding: 100px 0;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.mascot-cv-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.mascot-cv-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mascot-cv-tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(59,130,246,0.1);
    color: #3b82f6; /* default, can be overridden */
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mascot-cv-title {
    color: white; /* default */
    font-size: 2.5rem;
    margin: 0;
}

/* Fallback for the text-gradient in title */
.mascot-cv-title .text-gradient {
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mascot-cv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.mascot-cv-card {
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, background-color 0.4s ease;
}

.mascot-cv-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255,255,255,0.08); /* default hover */
}

/* Stagger effect */
.mascot-cv-grid.is-staggered .mascot-cv-card:nth-child(even) {
    transform: translateY(30px);
}
.mascot-cv-grid.is-staggered .mascot-cv-card:nth-child(even):hover {
    transform: translateY(20px);
}

.mascot-cv-icon {
    color: #3b82f6;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mascot-cv-icon i {
    font-size: 32px;
}

.mascot-cv-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.mascot-cv-card h3 {
    color: white;
    font-size: 1.4rem;
    margin: 0 0 16px 0;
}

.mascot-cv-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.mascot-cv-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #3b82f6; /* default accent */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mascot-cv-card:hover .mascot-cv-glow {
    transform: scaleX(1);
}

/* Responsive */
@media (max-width: 992px) {
    .mascot-cv-grid.is-staggered .mascot-cv-card:nth-child(even) {
        transform: none; /* Disable stagger on smaller screens */
    }
    .mascot-cv-grid.is-staggered .mascot-cv-card:nth-child(even):hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .mascot-cv-section {
        padding: 60px 0;
    }
    .mascot-cv-title {
        font-size: 2rem;
    }
    .mascot-cv-grid {
        grid-template-columns: 1fr;
    }
}
