.intro{
    color: var(--clr-base-100);
    background-color: var(--secondary-color);

    width: 100%;
    height: 500px;
    display: block;
    font-size: var(--fs-h3);
    font-weight: var(--fw-bold);
    text-align: center;
    align-content: center;
    justify-items: center;
    padding: var(--size-400);
}

.ad{
    margin: 4px;
    background: url(assets/JPEG/ad-promo.jpg);
    background-size: 100%;
    background-position: center 30%;
    background-repeat: no-repeat;
    padding: var(--size-400);

    justify-self: center;
    height: 900px;
    width: 100%;
}

.ad p:first-child{
    font-weight: var(--fw-bold);
    font-size: var(--fs-h3);
    color: var(--primary-color);
    

    justify-self: center;
}

.ad p:last-child{
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-700);
    color: var(--clr-base-900);
    
    width:  20ch;
    text-align: left;
    justify-self: center;
}

.promo-card-grid{
    display: grid;
    columns: 1fr;
    place-items: center;
    padding: var(--size-400);
    background: linear-gradient(to top, hsl(181, 76%, 29%), hsl(181, 74%, 35%), var(--tertiary-accent-300));
    gap: var(--size-600);
}

.promo-btn{
    cursor: pointer;
    border: none;
    text-decoration: none;
    background-color: var(--primary-color);
    width: 180px;
    height: 60px;
    border-radius: 20px;
    color: var(--clr-base-100);
}

.promo-btn:hover,
.promo-btn:focus-within{
    background-color: var(--secondary-color);
}

.promo-text{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding-top: var(--size-200);
    padding-left: var(--size-700);
    padding-right: var(--size-400);
    margin: 0 auto;  
}

.promo-card-trailing{
    position: absolute;
    transform: translate(0%, -1%);
    background-color: var(--tertiary-accent-500);
    width: 36px;
    height: calc(100% + 4px);
    border-radius: 32px;
}

.promo-card{
    position: relative;
    width: 800px;
    height: 250px;
    background-color: var(--tertiary-accent-400);
    border-radius: 32px;
    color: var(--clr-base-100);
}

#promo-intro{
    font-weight: var(--fw-bold);
    font-size: var(--fs-700);
    color: var(--clr-base-100);
    text-align: left;
    width: 800px;
}