/**
 * Young Scientists Widget Styles
 */

.marthoma-young-scientists {
    width: 100%;
}

.marthoma-young-scientists .scientists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* Scientist Tile */
.marthoma-young-scientists .scientist-tile {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1.5px solid #D9D9D9;
    border-radius: 17px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.marthoma-young-scientists .scientist-tile:hover {
    border-color: #04141E;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Year */
.marthoma-young-scientists .scientist-year {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #04141E;
    display: block;
    margin-bottom: 5px;
    line-height: 1.5;
}

/* Name */
.marthoma-young-scientists .scientist-name {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #04141E;
    margin: 0 0 5px 0;
    line-height: 1.5;
}

/* Position/Organization */
.marthoma-young-scientists .scientist-position {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .marthoma-young-scientists .scientists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .marthoma-young-scientists .scientists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .marthoma-young-scientists .scientist-tile {
        padding: 21px 20px;
    }

    .marthoma-young-scientists .scientist-year {
        font-size: 15px;
    }

    .marthoma-young-scientists .scientist-name {
        font-size: 15px;
    }

    .marthoma-young-scientists .scientist-position {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .marthoma-young-scientists .scientists-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .marthoma-young-scientists .scientist-tile {
        padding: 16px 20px;
    }

    .marthoma-young-scientists .scientist-year {
        font-size: 14px;
    }

    .marthoma-young-scientists .scientist-name {
        font-size: 14px;
    }

    .marthoma-young-scientists .scientist-position {
        font-size: 12px;
    }
}
