.warzone-collection {
    padding: 68px 0 86px;
    background: url("https://assets.corsair.com/image/upload/v1744102424/COD_PREM_EXTERIOR_PATTERN.png");
}

.warzone-collection .header {
    text-align: center;
    padding-bottom: 36px;
}

.warzone-collection .header h1 {
    color: #FFF;
    text-align: center;
    font-size: 64px;
    font-weight: 600;
    line-height: 64px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.warzone-collection .header p {
    max-width: 1085px;
    color: #FFF;
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin: auto;
}

.warzone-collection .products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 36px;
}

.warzone-collection .product-card {
    width: calc(33% - .3rem);
    height: 560px;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
    text-decoration: none;
    cursor: pointer;
    background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.00) 100%), rgba(51, 51, 51, 0.80);
    transition: transform 0.3s ease;
}

.warzone-collection .product-image {
    width: 470px;
    height: 400px;
    object-fit: contain;
    margin: 0 auto 30px;
}

.warzone-collection .product-card h3 {
    color: #FFF;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
}

.warzone-collection .product-card .learn-more {
    display: flex;
    align-items: center;
    color: #009351;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0.32px;
    text-transform: uppercase;
}

.warzone-collection .product-card .learn-more svg {
  transition: margin-left 0.3s ease;
}

.warzone-collection .brand-icon {
    position: absolute;
    top: 30px;
    right: 30px;
}

.warzone-collection .corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border-color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.warzone-collection .corner-tl {
    top: 0;
    left: 0;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}

.warzone-collection .corner-tr {
    top: 0;
    right: 0;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.warzone-collection .corner-br {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
}

.warzone-collection .corner-bl {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}

.warzone-collection .product-card:hover .corner {
    opacity: 1;
}

.warzone-collection .product-card:hover .learn-more {
    color: #00BC68;
}

.warzone-collection .product-card:hover .learn-more svg {
    margin-left: 15px;
}

.warzone-collection .product-card:hover svg path {
    fill: #00BC68;
}

@media (width < 768px) {
   .warzone-collection .products-grid {
    display: block;
   }
   .warzone-collection .products-grid .product-card {
    width: 100%;
    margin-bottom: 12px;
   }
}
@media (width >= 768px) {
    html:not([lang*="US"]) .warzone-collection .product-card {
     flex-grow: unset;
    }
}

html:not([lang*="US"]) a[aria-label*="Corsair vengeance PC"],
html:not([lang*="US"]) a[aria-label*="ORIGIN PC SYstems & Laptops"] {
  display: none !important;
}