.products-hero {
    padding: 80px 0 0;
    text-align: center;
}

.products-hero .container {
    display: flex;
    flex-direction: column;
        gap: 1rem;
}

.products-hero .container h1 {
    font-size: 48px;
    font-weight: 600;
    font-family: "Newsreader", serif;
    color: #12266B;
}
.products-hero .hero-content{
    opacity: 1;
    max-width: 100%;
    color: #5F5F58;
}
.products-hero .hero-content p{
    color: #5F5F58;
    font-size: 18px;
    opacity: 1;
}
.products-grid-section{
    padding-top: 64px;
}
.products-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding-inline: 64px;
    justify-content: space-between;
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 304px;
}

.product-card>a>img {
    width: 100%;
    max-height: 338px;
    border-radius: 8px;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-content-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.card-content-header h3 {
    font-size: 24px;
    font-family: "Newsreader", serif;
    color: #12266B;
    line-height: 32px;
    font-weight: 500;
}
.card-content p{
    color: #5F5F58;
    font-size: 1rem;
}

.price {
    color: #5F5F58;
    font-size: 14px;
    font-weight: 400;
    margin: 0
}

.order-btn-secondary {
    display: block;
    text-align: center;
    padding: 12px;
    background: #fff;
    border: 1px solid #12266B;
    color: #12266B;
    text-decoration: none;
    margin: 0;
    border-radius: 6px;
}
.order-btn-secondary:hover{
    background-color: #12266B;
    color: #fff;
    cursor: pointer;
}
/* Product Grid */

.products-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:32px;
}

.product-card{
    display:flex;
    flex-direction:column;
    height:100%;
    max-width:none;
}

.product-card>a img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
}

.card-content{
    display:flex;
    flex-direction:column;
    flex:1;
    gap:16px;
}

.card-content-header{
    min-height:88px;
}

.product-short-description{
    flex:1;
}

.order-btn-secondary{
    margin-top:auto;
}