* {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0;
}

ul, li {
    list-style: none;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0E1621;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 20px 20px;
}

.items {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    gap: 20px;
}

.item {
    display: flex;
    flex-direction: column;
    background-color: #182533;
    padding: 10px 15px;
    gap: 10px;
    border-radius: 16px;
}

.item__image {
    width: 100%;
    border-radius: 8px;
}

.item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.item__header__title, .item__header__date {
    color: #FAA357;
    font-size: 14px;
    font-weight: 600;
}

.item__text {
    font-size: 14px;
}