.gsbp-fa1c90d, .gsbp-4756f73 {
    margin: 0 !important;
}

h1 {
    text-align: center;
    line-height: 100%;
    color: #313332;
    margin: 0 0 50px;
}

.media_section {
    max-width: 1360px;
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.media_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.35vw;
    row-gap: 40px;
    width: 100%;
    align-items: stretch;
}

.media_card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
    overflow: hidden;
}

.media_card_img {
    width: 100%;
    flex: 0 0 auto;
    aspect-ratio: 1.8;
    min-height: 200px;
    background-color: #f0f0f0;
    overflow: hidden;
    position: relative;
}

.media_card_img a {
    display: block;
    width: 100%;
    height: 100%;
}

.media_card_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.media_card_info {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    gap: 16px;
    flex: 1 1 0%;
    min-width: 0;
}

.media_card_date {
    font-family: "Ony One";
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    color: #AD83FF;
}

.media_card_title {
    margin: 0;
    font-family: "Ony One";
    font-weight: 500;
    font-size: 18px;
    line-height: 114.9%;
    color: #313332;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(1.149em * 2);
}

.media_card_title a {
    text-decoration: none;
    color: #313332;
    transition: color 0.4s ease-in-out;
}

.media_card_title a:hover {
    color: #AD83FF;
}

.media_card_source {
    margin-top: auto;
    width: 100%;
}

.media_card_source a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #313332;
    font-family: "Ony One";
    font-weight: 400;
    font-size: 16px;
    line-height: 114.9%;
}

.media_card_source_text {
    color: #313332;
}

.media_card_source_arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.media_load_more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
    clear: both;
}

.btn_load_more {
    background-color: #ECECEC;
    color: #313332;
    border: none;
    padding: 14px 27px;
    font-family: "Ony One";
    font-weight: 500;
    font-size: 15px;
    line-height: 110%;
    cursor: pointer;
}

@media (max-width: 1199px) {
    .media_section {
        padding: 0 16px;
    }
    
    .media_grid {
        row-gap: 16px;
    }

    .media_card {
        gap: 16px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 20px;
        text-align: left;
        padding: 0 16px;
        margin: 20px 0 30px;
    }

    .media_section {
        margin: 0;
        padding: 0 16px;
        width: 100%;
    }

    .media_grid {
        grid-template-columns: repeat(2, 1fr);
        column-grid: 4px;
        row-gap: 24px;
    }
    
    .media_card {
        gap: 8px;
    }

    .media_card_title {
        font-size: 16px;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        height: calc(1.149em * 4);
    }
    
    .media_card_source {
        display: none;
    }
}