.travel-side-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.travel-side-card {
    border: 1px solid rgba(7, 93, 132, 0.14);
    border-radius: 14px;
    background: #ffffff;
    padding: 14px;
    box-shadow: 0 10px 24px rgba(7, 68, 95, 0.1);
}

.travel-side-card h3 {
    margin: 0 0 12px;
    color: #7f4d20;
    font-size: 1.14rem;
    font-weight: 900;
    text-transform: uppercase;
}

.travel-side-card.travel-side-card--warm {
    border-color: rgba(168, 110, 33, 0.3);
    background: linear-gradient(180deg, #fff9ee 0%, #ffefd1 100%);
    box-shadow: 0 12px 24px rgba(133, 82, 21, 0.14);
}

.travel-side-card.travel-side-card--warm h3 {
    color: #6a4014;
}

.travel-topic-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.travel-topic-list li + li {
    margin-top: 8px;
}

.travel-topic-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    color: #06445f;
    font-weight: 700;
    text-decoration: none;
    background: #f4faf8;
}

.travel-topic-list.travel-topic-list--warm li a {
    border: 1px solid rgba(170, 116, 39, 0.2);
    color: #694116;
    background: linear-gradient(180deg, #fff9ef 0%, #fff1d9 100%);
}

.travel-topic-list li a:hover {
    background: #eaf4f1;
}

.travel-topic-list.travel-topic-list--warm li a:hover {
    background: linear-gradient(180deg, #fff3e0 0%, #ffe8c2 100%);
}

.travel-topic-list li a span {
    display: inline-flex;
    min-width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: #0a7d52;
    font-size: 0.78rem;
}

.travel-topic-list.travel-topic-list--warm li a span {
    background: #b2722a;
}

.travel-topic-list li.is-active a {
    background: #075d84;
    color: #ffffff;
}

.travel-topic-list.travel-topic-list--warm li.is-active a {
    border-color: rgba(122, 73, 20, 0.62);
    background: linear-gradient(180deg, #c98535 0%, #aa6926 100%);
    color: #ffffff;
}

.travel-topic-list.travel-topic-list--warm li.is-active a span {
    background: rgba(255, 255, 255, 0.2);
}

.travel-popular-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.travel-popular-item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 10px;
    padding: 8px;
    border-radius: 10px;
    background: #f7fbfb;
}

.travel-popular-item.travel-popular-item--warm {
    border: 1px solid rgba(170, 116, 39, 0.22);
    background: linear-gradient(180deg, #fff9ef 0%, #fff0d6 100%);
}

.travel-popular-item__thumb img {
    width: 100%;
    height: 72px;
    border-radius: 8px;
    object-fit: cover;
}

.travel-popular-item__body h4 {
    margin: 0;
    line-height: 1.35;
    font-size: 0.93rem;
    font-weight: 700;
}

.travel-popular-item__body h4 a {
    color: #06445f;
    text-decoration: none;
}

.travel-popular-item.travel-popular-item--warm .travel-popular-item__body h4 a {
    color: #5b360e;
}

.travel-popular-item__body h4 a:hover {
    color: #0a7d52;
}

.travel-popular-item.travel-popular-item--warm .travel-popular-item__body h4 a:hover {
    color: #7b4f1d;
}

.travel-popular-item__body p {
    margin: 6px 0 0;
    color: #4b6d79;
    font-size: 0.82rem;
}

.travel-popular-item.travel-popular-item--warm .travel-popular-item__body p {
    color: #76552e;
}

.travel-weather-widget {
    border-radius: 10px;
    overflow: hidden;
}

.travel-weather-widget > div {
    width: 100%;
}
