/* Profiler — i2t3 component styles
 * Profile cards in a grid. Bootstrap provides .card and .card-img-top.
 */

.i2t3-profiler-section { position: relative; }

.i2t3-profiler-section .card {
    border: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.i2t3-profiler-section .card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}
.i2t3-profiler-section .card-img-top {
    height: 280px;
    object-fit: cover;
    width: 100%;
}
.i2t3-profiler-section .card-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.i2t3-profiler-section .card-subtitle {
    color: var(--i2t3-text-muted, #6c757d);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}
.i2t3-profiler-section .card-footer {
    background-color: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.i2t3-profiler-section .card-footer a {
    color: var(--i2t3-primary, #0d6efd);
    font-size: 1.2rem;
    margin-right: 0.5rem;
    text-decoration: none;
}
.i2t3-profiler-section .card-footer a:hover {
    color: var(--i2t3-secondary, #6c757d);
}
