
/* #############################################################################
/* ####### AU Elements [Destiantion]
/* #############################################################################

/*
--------------------------------------------------------------------------------
1 - Destination overview, aUElm-destination-hero.php
--------------------------------------------------------------------------------
*/

/* Block: dest-hero */
.dest-hero {
    position: relative;
    background-color: #fff;
    margin-bottom: 0 !important;
    overflow: hidden;
}

.dest-hero__banner {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.dest-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    z-index: 1;
}

.dest-hero__content {
    position: relative;
    z-index: 2;
}

/* Elements */
.dest-hero__title {
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.dest-hero__pill {
    display: inline-block;
    background: #00bcd4; /* Brand Teal */
    color: #fff !important;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.dest-hero__desc {
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* Element: Stats Card (Glassmorphism) */
.dest-hero__stats-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
}

.dest-hero__stats-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dest-hero__stat-item {
    display: flex;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dest-hero__stat-item:last-child {
    border: none;
}

.dest-hero__stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 188, 212, 0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
}

.dest-hero__stat-label {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 11px;
    font-weight: bold;
}

.dest-hero__stat-value {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

/* Utility-style button overwrite scoped to hero */
.dest-hero .button-white-stroke {
    background: transparent;
    border: 2px solid #fff;
    color: #fff !important;
    text-align: center;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .dest-hero__banner {
        background-attachment: scroll;
        padding: 80px 0;
    }
    .dest-hero__intro {
        text-align: center;
        margin-bottom: 40px;
    }
}

/*
--------------------------------------------------------------------------------
2 - Intro description, aUElm-destination-overview.php
--------------------------------------------------------------------------------
*/

/* Block: dest-intro */
.dest-intro {
    display: block;
    width: 100%;
}

/* Element: Heading */
.dest-intro__heading {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Element: Wrapper (Replacing the inline padding) */
.dest-intro__wrapper {
    padding-left: 20px;
    border-left: 3px solid rgba(0, 188, 212, 0.1); /* Subtle accent line */
}

/* Element: Content Container */
.dest-intro__content {
    max-width: 900px; /* Improves readability for long text */
}

/* Element: Text */
.dest-intro__text {
    color: #444;
    margin: 0;
}

/* Responsive Adjustment */
@media screen and (max-width: 768px) {
    .dest-intro__wrapper {
        padding-left: 15px;
    }
    
    .dest-intro__text {
        font-size: 16px; /* Slightly smaller on mobile */
    }
}

/*
--------------------------------------------------------------------------------
3 - Seasonal guidance, aUElm-best-time-to-visit.php
--------------------------------------------------------------------------------
*/
/* --- High-Impact 3-Column Seasonal Row --- */
.season-grid {
    display: grid;
    /* Forces exactly 3 columns on desktop */
    grid-template-columns: repeat(3, 1fr); 
    gap: 15px; /* Tighter gap to save horizontal space */
}

.season-card {
    display: flex;
    flex-direction: column; /* Stacked internally for 3-column width */
    background: #ffffff;
    border: 1px solid #eef3f4;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(27, 58, 75, 0.04);
}

.season-card:hover {
    transform: translateY(-5px);
    border-color: #00bcd4;
}

/* Header takes full width of the card top */
.season-card__header {
    background: #f8fbfc;
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid #eef3f4;
}

.season-card__icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.season-card__name {
    font-size: 14px;
    color: #1b3a4b;
    font-weight: 800;
    text-transform: uppercase;
    display: block;
}

/* Body holds the data */
.season-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.season-card__months {
    font-size: 11px;
    color: #00bcd4;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.season-card__temp-badge {
    text-align: center;
    background: #1b3a4b;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin: 0 auto 15px auto;
}

.season-card__description {
    font-size: 13px;
    color: #555555;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Seasonal Moods */
.season-card--sunny .season-card__icon-circle { color: #f39c12; }
.season-card--rainy .season-card__icon-circle { color: #3498db; }
.season-card--chilly .season-card__icon-circle { color: #00bcd4; }

/* Responsive: 1 Column on Mobile */
@media (max-width: 992px) {
    .season-grid { grid-template-columns: 1fr; }
    .season-card { flex-direction: row; }
    .season-card__header { flex: 0 0 120px; border-bottom: none; border-right: 1px solid #eef3f4; }
    .season-card__body { text-align: left; }
    .season-card__months, .season-card__temp-badge, .season-card__description { text-align: left; margin-left: 0; }
}

/*
--------------------------------------------------------------------------------
4.1 - Travel directions, aUElm-how-to-reach.php
--------------------------------------------------------------------------------
*/

/* Block: reach-card */
.reach-card {
    display: block;
}

.reach-card__grid {
    padding-left: 20px;
}

/* Element: Individual Item */
.reach-card__item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.reach-card__item:hover {
    border-color: #00bcd4;
}

/* Element: Header */
.reach-card__header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #fcfcfc;
    border-bottom: 1px solid #f0f0f0;
}

.reach-card__title {
    font-size: 1.25rem;
    margin: 0;
    color: #333;
    font-weight: 600;
}

/* Element: Icon Box & Modifiers */
.reach-card__icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 15px;
    color: #fff;
    font-size: 1.1rem;
}

.reach-card__icon-box--air  { background-color: #3498db; }
.reach-card__icon-box--rail { background-color: #2ecc71; }
.reach-card__icon-box--road { background-color: #e67e22; }

/* Element: Body Content */
.reach-card__body {
    padding: 20px;
}

.reach-card__text {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .reach-card__grid {
        padding-left: 10px;
    }
    
    .reach-card__header {
        padding: 12px 15px;
    }
}

/*
--------------------------------------------------------------------------------
4.2 - Travel directions, aUElm-how-to-reach.php
--------------------------------------------------------------------------------
*/

/* Block: reach-modern */
.reach-modern__inset {
    padding-left: 20px;
}

.reach-modern__row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
}

/* Element: Column Wrapper */
.reach-modern__column {
    width: 33.333%;
    padding-right: 20px;
    margin-bottom: 20px;
}

/* Element: Card */
.reach-modern__card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reach-modern__card:hover {
    transform: translateY(-3px);
}

/* Element: Icon Side */
.reach-modern__icon-box {
    width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}

/* Modifiers for Icon Colors */
.reach-modern__icon-box--air  { background-color: #3498db; }
.reach-modern__icon-box--rail { background-color: #27ae60; }
.reach-modern__icon-box--road { background-color: #e67e22; }

/* Element: Info Side */
.reach-modern__info {
    padding: 18px 20px;
}

.reach-modern__title {
    font-size: 1.1rem;
    color: #333;
}

.reach-modern__time {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.reach-modern__text {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

/* Responsive Breakpoints */
@media screen and (max-width: 1100px) {
    .reach-modern__column {
        width: 50%;
    }
}

@media screen and (max-width: 768px) {
    .reach-modern__inset {
        padding-left: 10px;
    }
    
    .reach-modern__column {
        width: 100%;
        padding-right: 10px;
    }

    .reach-modern__icon-box {
        width: 60px;
    }
}

/*
--------------------------------------------------------------------------------
5 - Activities, aUElm-things-to-do.php
--------------------------------------------------------------------------------
*/

/* Block: activity-grid */
.activity-grid__inset {
    padding-left: 20px;
}

.activity-grid__row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Element: Column */
.activity-grid__col {
    flex: 1;
    min-width: calc(50% - 20px);
}

/* Element: Card */
.activity-grid__card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.activity-grid__card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: #00bcd4;
    transform: translateY(-4px);
}

/* Element: Image Box */
.activity-grid__image-box {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.activity-grid__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-grid__card:hover .activity-grid__img {
    transform: scale(1.05);
}

/* Element: Badge */
.activity-grid__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #00bcd4;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 2;
}

/* Element: Body */
.activity-grid__body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.activity-grid__title {
    margin-bottom: 10px;
    color: #333;
}

.activity-grid__desc {
    color: #666;
    line-height: 1.6;
}

.activity-grid__spacer {
    flex-grow: 1;
}

.activity-grid__divider {
    border: 0;
    border-top: 1px solid #f0f0f0;
    margin: 15px 0;
}

.activity-grid__link {
    color: #1b3a4b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.activity-grid__link:hover {
    color: #00bcd4;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .activity-grid__inset {
        padding-left: 10px;
    }
    
    .activity-grid__col {
        min-width: 100%;
    }
    
    .activity-grid__image-box {
        height: 160px;
    }
}

/*
--------------------------------------------------------------------------------
6 - Attractions, aUElm-places-to-visit.php
--------------------------------------------------------------------------------
*/

/* Block: places-list */
.places-list__inset {
    padding-left: 20px;
}

/* Block: place-item */
.place-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    margin-bottom: 25px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.place-item:hover {
    border-color: #00bcd4;
    transform: translateX(5px); /* Subtle slide-in effect */
}

/* Element: Image Box */
.place-item__image-box {
    height: 100%;
    min-height: 200px;
    overflow: hidden;
}

.place-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.place-item:hover .place-item__img {
    transform: scale(1.1);
}

/* Element: Content Area */
.place-item__content {
    padding: 30px;
}

.place-item__name {
    font-size: 1.6rem;
    color: #1b3a4b;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.place-item__desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Element: Button */
.place-item__btn {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #00bcd4;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.place-item__btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.place-item__btn:hover {
    color: #1b3a4b;
}

.place-item__btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .places-list__inset {
        padding-left: 10px;
    }
    
    .place-item__content {
        padding: 20px;
    }

    .place-item__image-box {
        min-height: 180px;
    }

    .place-item:hover {
        transform: translateY(-5px); /* Switch to vertical lift on mobile */
    }
}

/*
--------------------------------------------------------------------------------
7 - Cuisine highlights, aUElm-local-food.php
--------------------------------------------------------------------------------
*/

/* Block: food-grid */
.food-grid__inset {
    padding-left: 20px;
}

.food-grid__row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px; /* Offset the column padding */
}

/* Element: Column (2-column layout) */
.food-grid__column {
    width: 50%;
    padding-right: 20px;
    margin-bottom: 20px;
}

/* Element: Card */
.food-grid__card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    height: 100%;
    transition: all 0.3s ease;
}

.food-grid__card:hover {
    border-color: #00bcd4;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

/* Element: Thumbnail Circle */
.food-grid__thumb {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #fcfcfc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.food-grid__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Element: Content Area */
.food-grid__content {
    padding-left: 20px;
}

.food-grid__title {
    font-size: 1.2rem;
    margin: 0 0 5px 0;
    color: #1b3a4b;
}

.food-grid__desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin: 0 0 10px 0;
    /* Line Clamping to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Element: Link */
.food-grid__link {
    font-size: 0.8rem;
    font-weight: 700;
    color: #00bcd4;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.food-grid__link i {
    font-size: 10px;
    margin-left: 4px;
}

.food-grid__link:hover {
    color: #1b3a4b;
}

/* Mobile Responsiveness */
@media screen and (max-width: 900px) {
    .food-grid__column {
        width: 100%; /* Stack on tablets/mobile */
        padding-right: 15px;
    }
    
    .food-grid__inset {
        padding-left: 10px;
    }

    .food-grid__thumb {
        width: 65px;
        height: 65px;
    }
}

/*
--------------------------------------------------------------------------------
8 - Safety & advice, aUElm-travel-tips.php
--------------------------------------------------------------------------------
*/

/* Block: tip-card */
.tip-card__inset {
    padding-left: 20px;
}

/* Element: Individual Tip Item */
.tip-card__item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.tip-card__item:hover {
    border-color: #00bcd4;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tip-card__flex {
    display: flex;
    min-height: 80px;
}

/* Element: Icon Sidebar */
.tip-card__sidebar {
    width: 60px;
    background: #1b3a4b; /* Default Fallback */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

/* Sidebar Color Modifiers */
.tip-card__sidebar--general { background-color: #3498db; }
.tip-card__sidebar--safety  { background-color: #e74c3c; }
.tip-card__sidebar--packing { background-color: #f39c12; }
.tip-card__sidebar--money   { background-color: #27ae60; }
.tip-card__sidebar--local   { background-color: #9b59b6; }

/* Element: Content Area */
.tip-card__content {
    padding: 15px 20px;
    flex-grow: 1;
}

.tip-card__title {
    font-size: 1.15rem;
    margin: 0 0 5px 0;
    color: #1b3a4b;
}

.tip-card__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .tip-card__inset {
        padding-left: 10px;
    }
    
    .tip-card__sidebar {
        width: 50px;
        font-size: 18px;
    }

    .tip-card__content {
        padding: 12px 15px;
    }

    .tip-card__item:hover {
        transform: translateY(-3px); /* Vertical lift feels better on mobile */
    }
}

/*
--------------------------------------------------------------------------------
9.1 - Geographic context, aUElm-map-embed.php
--------------------------------------------------------------------------------
*/

/* Block: map-card */
.map-card__inset {
    padding-left: 20px;
}

/* Element: Container */
.map-card__container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ddd;
    background: #fff;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.map-card__container:hover {
    border-color: #00bcd4;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Element: Toolbar */
.map-card__toolbar {
    background: #1b3a4b; /* Deep Slate Brand Color */
    padding: 15px 20px;
}

.map-card__title {
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* Element: Action Link */
.map-card__link {
    font-size: 0.85rem;
    color: #fff !important;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.map-card__link i {
    font-size: 11px;
    margin-left: 5px;
}

.map-card__link:hover {
    color: #00bcd4 !important;
}

/* Element: Canvas (Iframe wrapper) */
.map-card__canvas iframe {
    display: block;
    width: 100%;
    height: 400px;
    filter: grayscale(10%) contrast(105%); /* Subtle aesthetic tweak */
    transition: filter 0.3s ease;
}

.map-card__container:hover .map-card__canvas iframe {
    filter: grayscale(0%) contrast(100%);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .map-card__inset {
        padding-left: 10px;
    }
    
    .map-card__toolbar {
        padding: 12px 15px;
    }

    .map-card__canvas iframe {
        height: 300px;
    }
}

/*
--------------------------------------------------------------------------------
9.2 - Geographic context, aUElm-map-embed.php
--------------------------------------------------------------------------------
*/

/* Block: map-inset */
.map-inset__container {
    padding-left: 20px;
}

/* Element: Wrapper */
.map-inset__wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-inset__wrapper:hover {
    transform: translateY(-3px);
}

/* Element: Toolbar */
.map-inset__toolbar {
    background: #1b3a4b; /* Deep Navy Brand Color */
    padding: 15px 20px;
}

.map-inset__address {
    display: flex;
    align-items: center;
}

.map-inset__link {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.map-inset__link:hover {
    opacity: 0.8;
}

/* Element: Canvas / Iframe */
.map-inset__canvas iframe {
    display: block;
    width: 100%;
    filter: grayscale(0.2) contrast(1.1);
    transition: filter 0.5s ease;
    border: 0;
}

.map-inset__wrapper:hover .map-inset__canvas iframe {
    filter: grayscale(0) contrast(1);
}

/* Utility Helper scoped to block */
.map-inset .no-margin {
    margin: 0 !important;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .map-inset__container {
        padding-left: 10px;
    }

    .map-inset__toolbar {
        padding: 12px 15px;
    }

    .map-inset__canvas iframe {
        height: 300px;
    }
}

/*
--------------------------------------------------------------------------------
10 - Climate awareness, aUElm-weather-widget.php
--------------------------------------------------------------------------------
*/

/* Layout Block: weather-grid */
.weather-grid__inset {
    padding-left: 20px;
}

.weather-grid__row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.weather-grid__col {
    flex: 1;
    min-width: calc(33.33% - 15px);
}

/* Component Block: weather-card */
.weather-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.weather-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Element: Header & Modifiers */
.weather-card__header {
    padding: 25px 20px;
    color: #fff;
}

.weather-card__header--summer  { background-color: #FF9800; }
.weather-card__header--monsoon { background-color: #2196F3; }
.weather-card__header--winter  { background-color: #607D8B; }

.weather-card__icon {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

.weather-card__title {
    font-size: 1.3rem;
    margin: 0 0 5px 0;
    color: #fff !important;
    font-weight: 600;
}

.weather-card__months {
    font-size: 0.9rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Element: Body */
.weather-card__body {
    padding: 20px;
    flex-grow: 1;
}

.weather-card__temp {
    display: inline-block;
    background: #f0f4f8;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 15px;
    color: #1b3a4b;
    border: 1px solid #e2e8f0;
}

.weather-card__desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Responsive Breakpoints */
@media screen and (max-width: 992px) {
    .weather-grid__col {
        min-width: calc(50% - 15px); /* 2 columns on tablets */
    }
}

@media screen and (max-width: 768px) {
    .weather-grid__inset {
        padding-left: 10px;
    }
    
    .weather-grid__col {
        min-width: 100%; /* 1 column on mobile */
    }
}

/*
--------------------------------------------------------------------------------
11 - Destination accomodation, aUElm-accommodation.php
--------------------------------------------------------------------------------
*/

/* Block: stay-grid */
.stay-grid__inset {
    padding-left: 20px;
}

.stay-grid__row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
}

.stay-grid__col {
    width: 50%;
    padding-right: 20px;
    margin-bottom: 20px;
}

/* Component: stay-card */
.stay-card { 
    background: #fff; 
    border-radius: 12px; 
    border: 1px solid #eee; 
    overflow: hidden; 
    display: flex; 
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.stay-card:hover { 
    border-color: #00bcd4; 
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Element: Image */
.stay-card__image-box { 
    height: 200px; 
    position: relative; 
    overflow: hidden; 
}

.stay-card__img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease; 
}

.stay-card:hover .stay-card__img { 
    transform: scale(1.1); 
}

/* Element: Badge */
.stay-card__badge { 
    position: absolute; 
    top: 15px; 
    left: 15px; 
    background: rgba(27, 58, 75, 0.9); /* Slate Brand Color */
    color: #fff; 
    padding: 4px 12px; 
    border-radius: 4px; 
    font-size: 11px; 
    font-weight: bold; 
    text-transform: uppercase;
    z-index: 2;
}

/* Element: Body */
.stay-card__body { 
    padding: 20px; 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
}

.stay-card__meta { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
}

.stay-card__title { 
    color: #1b3a4b; 
    font-size: 1.25rem; 
    flex: 1; 
    line-height: 1.2;
}

.stay-card__rating { 
    background: #fff9c4; 
    color: #f9a825; 
    padding: 2px 8px; 
    border-radius: 6px; 
    font-weight: 800; 
    font-size: 12px; 
    margin-left: 10px;
    white-space: nowrap;
}

.stay-card__desc { 
    color: #666; 
    line-height: 1.6; 
    margin-bottom: 25px; 
    flex-grow: 1; 
}

/* Element: Footer */
.stay-card__footer { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding-top: 15px; 
    border-top: 1px solid #f5f5f5; 
}

.stay-card__price-label { 
    display: block; 
    font-size: 11px; 
    color: #999; 
    text-transform: uppercase; 
}

.stay-card__price-value { 
    font-size: 1.2rem; 
    display: block;
}

.stay-card__btn {
    border-radius: 6px;
    transition: background 0.3s ease;
}

/* Responsive Styles */
@media screen and (max-width: 900px) {
    .stay-grid__col { width: 50%; }
}

@media screen and (max-width: 768px) {
    .stay-grid__inset { padding-left: 10px; }
    .stay-grid__col { width: 100%; padding-right: 10px; }
    .stay-grid__row { margin-right: 0; }
    .stay-card__image-box { height: 180px; }
}

/*
--------------------------------------------------------------------------------
12 - Highlight top places, aUElm-featured-destinations.php
--------------------------------------------------------------------------------
*/
/* --- Featured Destinations Block --- */
.places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Forces 3 in a row on desktop */
    gap: 25px;
}

.place-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eef3f4;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(27, 58, 75, 0.05);
}

.place-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(27, 58, 75, 0.1);
    border-color: var(--au-teal);
}

.place-card__image-container {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.place-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.place-card:hover .place-card__image {
    transform: scale(1.1);
}

.place-card__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--au-teal);
    color: #fff;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.place-card__content {
    padding: 20px;
}

.place-card__title {
    color: var(--au-slate);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.place-card__description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.place-card__link {
    font-size: 12px;
    font-weight: 700;
    color: var(--au-teal);
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.place-card__link:hover {
    color: var(--au-slate);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .places-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .places-grid { grid-template-columns: 1fr; }
}
