* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
    color: #000;
    background-color: #fff;
}

.text--h1 {
    font-weight: 600;
    font-size: 36px;
}

.text--h2 {
    font-weight: 600;
    font-size: 20px;
}

.text--small {
    font-weight: 500;
    font-size: 14px;
    color: #4D5562;
}

.articles_wrapper {
    max-width: 820px;
    margin: 0 auto;
    padding-top: 50px;
}

.articles__title {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.articles__separator { 
    height: 16px;
    width: 100%;
    max-width: 180px;    
    margin: 40px auto;
    background: url(resources/Seperator.svg) no-repeat center / 100% auto;
}

.cards__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding-bottom: 60px;
}

.card {
    display: flex;
    gap: 60px;
}

.card__img {
    width: 160px;            
    height: 160px;                  
    object-fit: cover;              
    border-radius: 10px;
}

.card__about {
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    gap: 14px;
    max-width: 520px;
}

@media (max-width: 640px) {
    .card__about {
        max-width: 350px;
    }
}