/* СМИ о нас: начало стилей */
.media-about-section {
    width: 100%;
}

.media-about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 8px;
}

.media-about-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    height: 100%;
    min-height: 64px;
    padding: 16px;

    border: 1px solid #dedede;
    border-radius: 8px;
    background-color: #ffffff;

    color: #0b1830;
    text-decoration: none;

    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.media-about-card__text {
    display: block;
    flex: 1 1 auto;
    min-width: 0;

    color: inherit;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    text-transform: uppercase;
}

.media-about-card__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin-left: auto;
}

.media-about-card__arrow svg {
    display: block;
    flex: 0 0 auto;
}

.media-about-card:hover {
    border-color: #ff7800;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.media-about-card:hover,
.media-about-card:focus {
    color: #0b1830;
    text-decoration: none;
}

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

    .media-about-card {
        min-height: 56px;
        padding: 16px;
        gap: 16px;
    }

    .media-about-card__text {
        font-size: 14px;
    }
}
/* СМИ о нас: конец стилей */