#content {
    max-width: 1200px;
    margin:0 auto;
}

.section-title {
  font-family: var(--font-heading);
  color: #D2232A;
  font-size: 62px;
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 4 карточки в ряд */
    gap: 30px;
    margin-top: 50px;
}

.author-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.author-card:hover {
    transform: translateY(-10px);
}

.author-photo-wrapper {
    width: 100%;
    aspect-ratio: 4/2; /* Квадратные фото */
    overflow: hidden;
    border: 2px solid #1A1A1A; /* Твой фирменный стиль с рамкой */
    margin-bottom: 15px;
}

.author-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.author-card:hover .author-photo-wrapper img {
    transform: scale(1.1);
}

.author-name {
    font-weight: bold;
    font-size: 24px;
    margin: 0;
    border-bottom: 2px solid var(--brand-red, #D2232A);
    display: inline-block;
    padding-bottom: 3px;
}

.author-role {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .authors-grid { grid-template-columns: repeat(2, 1fr); }
}

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