<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.travel-guide-container h2.travel-guide-header {
    margin-top: unset;
    margin-bottom: unset;
}

.travel-guide-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.travel-guide-header {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #001A34;
}

.travel-guides {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.travel-guides .item {
    height: 128px;
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid #DADEE2;
    border-radius: 16px;
    box-sizing: border-box;
    padding: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.travel-guides .item:nth-child(2n) {
    margin-right: 0; /* Ð£Ð±Ð¸Ñ€Ð°ÐµÐ¼ Ð¿Ñ€Ð°Ð²Ñ‹Ð¹ Ð¾Ñ‚ÑÑ‚ÑƒÐ¿ Ñƒ ÐºÐ°Ð¶Ð´Ð¾Ð³Ð¾ Ð²Ñ‚Ð¾Ñ€Ð¾Ð³Ð¾ ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð° */
}

.travel-guides a {
    text-decoration: none;
}

.travel-guides .item-details {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}

.travel-guides .item-details a {
    color: #2C8AC9;
}

.travel-guides .item-inner {
    box-sizing: border-box
}

.travel-guides .item-details .item-details__header {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.travel-guides .item-details .item-details__body {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #001A34;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
</pre></body></html>