.tpp-widget {
    padding: 21px;
    background: #e4f3f6;
    border: 0;
    border-top: 4px solid #20a0bb;
    border-radius: 0;
}

.tpp-widget-title {
    margin: 0 0 10px;
    color: #17231d;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}

.tpp-list {
    display: grid;
}

.tpp-item {
    min-width: 0;
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid #c5dfe4;
}

.tpp-item:last-child {
    border-bottom: 0;
}

.tpp-date {
    min-height: 80px;
    display: grid;
    grid-template-rows: 31px 1fr;
    overflow: hidden;
    color: #ffffff;
    background: #20a0bb;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
}

.tpp-date strong {
    display: grid;
    place-items: center;
    margin: 0;
    font-size: 25px;
    line-height: 1;
    font-weight: 500;
}

.tpp-date span {
    display: grid;
    place-items: center;
    padding: 4px;
    color: #ffffff;
    background: #202428;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-transform: capitalize;
}

.tpp-content h4 {
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
}

.tpp-content h4 a {
    color: #17231d;
    text-decoration: none;
    font-weight: 800;
}

.tpp-content h4 a:hover {
    color: #168ca4;
}

.tpp-content p {
    margin: 7px 0 0;
    color: #168ca4;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}

.tpp-content p svg {
    width: 15px;
    height: 15px;
}

.tpp-empty {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}

@media (max-width: 768px) {
    .tpp-item {
        grid-template-columns: 60px minmax(0, 1fr);
    }

    .tpp-date {
        min-height: 74px;
        border-radius: 10px;
    }

    .tpp-date strong {
        font-size: 23px;
    }

    .tpp-date span {
        font-size: 12px;
    }

    .tpp-content h4,
    .tpp-content p,
    .tpp-empty {
        font-size: 13px;
    }
}
