.claustro-wrapper {
    padding: 24px 0;
}

.claustro-head {
    margin-bottom: 32px;
    text-align: center;
}

.claustro-title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f1f1f;
}

.claustro-subtitle {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}

.claustro-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.claustro-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e9e9e9;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.claustro-card__image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #f5f5f5;
}

.claustro-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.claustro-card__content {
    padding: 18px;
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
}

.claustro-card__name {
    margin: 0 0 10px;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
    color: #2f2f2f;
}

.claustro-card__description {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.claustro-card__linkedin {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 8px;
    background: #0a66c2;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .claustro-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .claustro-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .claustro-grid {
        grid-template-columns: 1fr;
    }

    .claustro-title {
        font-size: 28px;
    }

    .claustro-card__name {
        font-size: 22px;
    }
}

.claustro-card__description {
    margin: 0;
}

.claustro-card__description.is-open {
    overflow: visible;
}

.claustro-card__toggle {
    padding: 0;
    border: 0;
    background: none;
    color: #0a66c2;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.claustro-card__toggle:hover {
    opacity: 0.85;
}

.claustro-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.claustro-card__content {
    padding: 18px;
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.claustro-card__linkedin {
    margin-top: auto;
}

/* ===== Skeleton base ===== */

.claustro-skeleton {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.claustro-skeleton__image {
    width: 100%;
    height: 220px;
    background: #eee;
    position: relative;
    overflow: hidden;
}

.claustro-skeleton__content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.claustro-skeleton__line {
    height: 12px;
    border-radius: 6px;
    background: #eee;
    position: relative;
    overflow: hidden;
}

.claustro-skeleton__line.title {
    height: 18px;
    width: 70%;
}

.claustro-skeleton__line.short {
    width: 40%;
}

.claustro-skeleton__line.medium {
    width: 80%;
}

.claustro-skeleton__line.long {
    width: 100%;
}

/* ===== animación shimmer ===== */

.claustro-skeleton__image::after,
.claustro-skeleton__line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150px;
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            transparent);
    animation: claustro-shimmer 1.2s infinite;
}

@keyframes claustro-shimmer {
    100% {
        transform: translateX(300px);
    }
}