.services {
    background: var(--warm_white);
    color: var(--black);
    padding: 100px var(--side-pad);
}

.services__inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
 
.services__title {
    font-family: "Anton", sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}
 
.services__body {
    font-family: "Oswald", sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 350;
    line-height: 2;
    max-width: fit-content;
    color: var(--black);
    margin-bottom: 60px;
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    align-items: start;
}
 
.services__col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
 
.services__card {
    display: flex;
    align-items: stretch;
    height: 64px;
}
 
.services__card-number {
    width: 64px;
    min-width: 64px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.4rem;
    color: var(--white);
    line-height: 1;
}
 
.services__card-title, .services__extra-title {
    flex: 1;
    border: 1.5px solid var(--gold);
    border-left: none;
    display: flex;
    align-items: center;
    padding: 0 24px;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--black);
}
 
.services__extra {
    display: flex;
    flex-direction: column;
    border: 1.5px solid var(--gold);
}
 
.services__extra-header {
    display: flex;
    align-items: stretch;
    height: 64px;
}

.services__extra-title {
    border-bottom: none;
}
 
.services__extra-plus {
    width: 64px;
    min-width: 64px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1;
}
 
.services__extra-body {
    flex: 1;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    padding: 0 24px;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
}
 
.services__extra-list {
    list-style: none;
    border: 1.5px solid var(--gold);
    border-top: none;
    padding: 20px 24px 20px 88px;  
    display: flex;
    flex-direction: column;
    gap: 8px;
}
 
.services__extra-list li {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 0.88rem;
    color: var(--black);
}
 
.services__extra-list li::before {
    content: "+ ";
    color: var(--black);
    font-weight: 500;
}
 