.destinations { padding: 68px 0; background: #fff; }
.destinations .container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

.dest-block { margin-bottom: 56px; }
.dest-block:last-child { margin-bottom: 0; }
.dest-block.is-hidden { display: none; }

.dest-block__head { display: flex; align-items: center; gap: 18px; margin: 0 0 28px; }
.dest-block__rule { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, #e4e7ec, transparent); }
.dest-block__title { margin: 0; font-size: 26px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; white-space: nowrap; }
.dest-block__title a { color: #a50430; -webkit-background-clip: text; background-clip: text; text-decoration: none; }
.dest-block__title a:hover { text-decoration: none; }

.dest-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }

.dest-card { position: relative; display: flex; flex-direction: column; margin: 0; background: #fff; border: 1px solid #e4e7ec; border-radius: 16px; overflow: hidden; opacity: 0; transform: translateY(18px); transition: transform .45s ease, box-shadow .35s ease, border-color .35s ease, opacity .5s ease; }
.dest-card.is-visible { opacity: 1; transform: translateY(0); }
.dest-card.is-visible:hover { transform: translateY(-6px); border-color: rgb(165 4 48 / 55%); box-shadow: 0 18px 40px -24px rgba(16,24,40,.45); }
.dest-card.is-hidden { display: none; }

.dest-card__media { position: relative; height: 168px; margin: 0; overflow: hidden; }
.dest-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s ease; }
.dest-card:hover .dest-card__media img { transform: scale(1.09); }
.dest-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.04) 35%, rgba(0,0,0,.6)); }
.dest-card__badge { position: absolute; z-index: 2; top: 12px; left: 12px; padding: 4px 10px; border-radius: 99px; background: rgba(255,255,255,.92); color: #101828; font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }

.dest-card__title { position: relative; z-index: 3; margin: -26px 16px 0; }
.dest-card__title .btn-clean { display: block; padding: 12px 14px; border: 0; border-radius: 12px; background: #fff; box-shadow: 0 10px 26px -14px rgba(16,24,40,.55); color: #101828; font-size: 17px; font-weight: 700; text-align: center; text-decoration: none; transition: color .25s, background .25s; }
.dest-card__title .btn-clean:hover { background: #faeaeb; color: #a50430; }

.dest-card__list { flex: 1; list-style: none; margin: 14px 0 0; padding: 0 18px; }
.dest-card__list li { border-bottom: 1px dashed #e4e7ec; }
.dest-card__list li:last-child { border-bottom: 0; }
.dest-card__list li.is-hidden { display: none; }
.dest-card__list a { display: flex; align-items: center; gap: 8px; padding: 8px 0; color: #344054; font-size: 14px; text-decoration: none; transition: color .2s, padding-left .2s; }
.dest-card__list a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #d0d5dd; flex: 0 0 auto; transition: background .2s; }
.dest-card__list a:hover { color: #a50430; padding-left: 6px; text-decoration: none; }
.dest-card__list a:hover::before { background: #a50430; }

.dest-card__more { display: block; margin-top: auto; padding: 13px 18px; border-top: 1px solid #e4e7ec; color: #667085; font-size: 13px; font-weight: 600; text-decoration: none; transition: color .2s, background .2s; }
.dest-card__more:hover { color: #a50430; background: #fcfaf5; }

@media (max-width: 991px) {
	.dest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.dest-block__title { white-space: normal; letter-spacing: 2.5px; font-size: 20px; }
}
@media (max-width: 575px) {
	.destinations { padding: 42px 0; }
	.dest-grid { grid-template-columns: 1fr; gap: 18px; }
	.dest-card__media { height: 150px; }
}