.trend-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1260px;
    margin: 0 auto;
    padding: 10rem 3rem 6vw;
}

.trend-card {
    background-color: #0E141F;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.trend-card:hover {
    transform: translateY(-5px);
}

.trend-card a:hover, .trend-card a:focus {
    text-decoration: none;
}

.trend-card p {
    color: #FFFFFF;
}

.trend-card img {
    width: 100%;
    height: auto;
    display: block;
}

.card-content {
    padding: 2rem;
}

.meta {
    color: #F5ED0C;
    margin-bottom: 0.5rem;
    font: normal normal normal 18px / 20px Knockout-HTF29-JuniorLiteweight !important;
    letter-spacing: 1.8px !important;
    display: grid;
}

.author, .date {
    color: #F5ED0C;
}

h3 {
    margin: 2rem 0 2rem;
    text-transform: uppercase;
    font: normal normal normal 32px / 28px Knockout-HTF47-Bantamweight;
    letter-spacing: 0.96px;
    color: #FFFFFF;
}

h2 a:hover {
    text-decoration: none;
}

.card-content p {
    font: normal normal normal 18px / 33px Rubik;
    letter-spacing: 0.18px;
}

.card-content .read-more {
    color: #F5ED0C;
    text-decoration: none;
    font: normal normal normal 18px / 33px Rubik;
    letter-spacing: 0.18px;
    text-decoration: underline;
}

.news-grid a:hover {
    text-decoration: none;
}

.news-views {
    background-color: #0E141F;
    text-align: center;
    padding: 6vw 1rem 12vw;
}

.news-header h2 {
    color: #F5ED0C;
    margin: 2rem 0 2rem;
    text-transform: uppercase;
    font: normal normal normal 50px / 40px Knockout-HTF47-Bantamweight;
    letter-spacing: 0.96px;
}

.news-header p {
    color: #F5ED0C;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 5rem;
    font: normal normal normal 18px / 20px Knockout-HTF29-JuniorLiteweight;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.news-item {
    text-align: left;
    background: transparent;
}

.news-item img {
    width: 100%;
    height: auto;
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
    -webkit-clip-path: polygon(0% 5%, 60% 0%, 100% 0%, 100% 100%, 70% 100%, 0% 100%, 0% 80%, 0% 0%);
    clip-path: polygon(0% 5%, 60% 0%, 100% 0%, 100% 100%, 70% 100%, 0% 100%, 0% 80%, 0% 0%);
}

.news-item img:hover {
    transform: scale(1.05);
}

.news-item h3 {
    color: #e6e600;
    margin: 2rem 0 2rem;
    text-transform: uppercase;
    font: normal normal normal 50px / 40px Knockout-HTF47-Bantamweight;
    letter-spacing: -0.5px;
}

.news-item p {
    color: #F5ED0C;
    max-width: 90%;
    font: normal normal normal 16px / 30px Rubik;
    letter-spacing: 0.16px;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(to bottom, rgba(10, 15, 24, 0.3), rgba(10, 15, 24, 0.95)),
                url('/wp-content/themes/disrupt/images/resources/post-img-topper.webp') center/cover no-repeat;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 8rem;
    z-index: 99;
}

.hero-content h1 {
    font: normal normal normal 110px / 80px Knockout-HTF47-Bantamweight;
    text-transform: uppercase;
    margin-bottom: 4rem;
}

.hero-content h1 span {
    color: #e6e600;
}

.download-btn {
    padding: 1rem 3rem;
    transition: all 0.3s ease;
    border: 1px solid #F5ED0B;
    border-radius: 100px;
    opacity: 1;
    text-transform: uppercase;
    height: 44px;
    background: transparent;
    color: #F5ED0B;
    font: normal normal normal 17px / 35px Knockout-HTF29-JuniorLiteweight;
    margin-top: 8px;
    letter-spacing: 1.7px;
}

.download-btn:hover {
    background-color: #F5ED0B;
    color: #0E141F;
}

.row-cutted-left-white {
    background-color: #FFFFFF;
    height: 10vw;
    transform: rotate(-1.8deg);
    margin-top: -5vw;
    width: 102vw;
}

.row-cutted-left {
    background-color: #0e141f;
    height: 80px;
    transform: rotate(-1.5deg);
    margin-top: 3vw;
    margin-bottom: -2vw;
    width: 110%;
    margin-left: -2vw;
}

#grad1 {
    height: 100%;
    background-image: linear-gradient(to top, #0E141F, #0E141F00);
    position: absolute;
    width: 100%;
    bottom: 0vw;
    z-index: 1;
}

.site-footer {
    margin-top: -2vw !important;
}

/* Responsive */
@media (max-width: 900px) {
    .trend-card {
        margin-right: 3rem;
        margin-left: 3rem;
    }
    
    .news-item {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .hero-content {
        text-align: center;
        padding-bottom: 0rem;
    }

    .hero-content h1 {
        font: normal normal normal 90px / 70px Knockout-HTF47-Bantamweight;
    }

    #grad1 {
        background-image: none;
    }

    .trend-cards {
        padding: 10rem 0 6vw;
    }
}