.container-fluid-main {
    padding: 10px 10px 50px 10px;
}

.max-w-7xl-main {
    max-width: 80rem;
    margin: 0 auto;
    padding-top: 24px;
}

.home-sections {
    margin-top: 40px;
}

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

.main-article {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    transition: transform .3s ease, box-shadow .3s ease;
    aspect-ratio: 4 / 3;
    background: #000;
}

.main-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
    cursor: pointer;
}

.main-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.main-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.main-content {
    position: absolute;
    inset: 0;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, .9) 100%);
    color: #fff;
}

.home-sections .main-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
}

.home-sections .main-description {
    font-size: 14px;
    line-height: 1.5;
    max-width: 24rem;
    color: #fff;
    overflow: hidden;
}

.read-more {
    margin-top: 16px;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    align-self: flex-start;
    color: #fff;
    letter-spacing: 0.02em;
    transition: color .2s ease;
}

.read-more::after {
    content: '';
    display: inline-block;
    height: 2px;
    width: 36px;
    margin-left: 12px;
    transform: translateY(-4px);
    background: #fff;
}

.main-article:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .3);
}

.main-article:hover .main-image img {
    transform: scale(1.05);
}

.main-article:hover .read-more {
    color: rgb(255, 128, 0) !important;
}

.main-article:hover .read-more::after {
    background: rgb(255, 128, 0);
}

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

@media (max-width: 768px) {
    .home-sections__grid {
        grid-template-columns: 1fr;
    }

    .home-sections .main-title {
        font-size: 20px;
    }
}