/* About Section - LAURA Grid Redesign */
.laura-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.laura-item {
    flex: 0 0 300px;
    /* Fixed width for consistent card sizing */
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.laura-item:nth-child(1) {
    animation-delay: 0.1s;
}

.laura-item:nth-child(2) {
    animation-delay: 0.2s;
}

.laura-item:nth-child(3) {
    animation-delay: 0.3s;
}

.laura-item:nth-child(4) {
    animation-delay: 0.4s;
}

.laura-item:nth-child(5) {
    animation-delay: 0.5s;
}

.laura-item:nth-child(6) {
    animation-delay: 0.6s;
}

.laura-img-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    /* Portrait orientation like reference */
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.laura-item:hover .laura-img-wrapper {
    border-color: var(--color-accent);
    box-shadow: 0 0 20px var(--color-accent-glow), inset 0 0 20px var(--color-accent-glow);
}

.laura-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.laura-item:hover .laura-img-wrapper img {
    filter: grayscale(0%) contrast(1.1) brightness(1.1);
    transform: scale(1.1) rotate(1deg);
}

/* Mysterious overlay effect */
.laura-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.laura-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    position: relative;
    padding-left: 0.5rem;
}

.drop-cap {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    float: left;
    line-height: 0.8;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
    text-shadow: 0 0 10px var(--color-accent-glow);
}

/* Specific fix for title underline to be exactly under letters Q-Y */
.heading-wrapper {
    display: inline-block;
    position: relative;
}

.heading-custom-underline {
    position: relative;
    display: inline-block;
}

.heading-custom-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-accent);
    box-shadow: 0 0 10px var(--color-accent-glow);
}

/* Testimonials Block specific */
.testimonials-block {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--color-accent);
}

.testimonials-link {
    font-family: var(--font-heading);
    color: #fff;
    text-transform: uppercase;
    font-size: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonials-link:hover {
    color: var(--color-accent);
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .laura-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}