/* Hotels page Group rates - remove code on update */
.hotel-info__text > p:last-of-type {
display: none;
}
/* Hotels page Group rates end */
/* Details */
details.description summary::after {
transition: all .3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
transform-origin: left bottom;
content: attr(data-open);
opacity: 0;
}
details.description[open] summary::after {
content: attr(data-open);
opacity: 1;
float: left;
padding-right: 10px;
}
details.description summary::before {
transition: all .3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
transform-origin: left bottom;
content: attr(data-close);
opacity: 0;
}
details.description:not([open]) summary::before {
content: attr(data-close);
opacity: 1;
}
.rmoreless {
font-family: inherit;
font-size: inherit;
font-weight: inherit;
opacity: inherit;
line-height: inherit;
}
/* Details end */
/* NOX Table responsive */
.nox table {
border: 1px solid #ccc;
border-collapse: collapse;
margin: 0;
padding: 0;
width: 100%;
table-layout: fixed;
}
.nox table caption {
font-size: 1.5em;
margin: .5em 0 .75em;
}
.nox table tr {
background-color: #0B1215;
border: 1px solid #ddd;
padding: .35em;
}
.nox table th,
.nox table td {
padding: .425em;
text-align: center;
}
.nox table th {
font-size: .85em;
letter-spacing: .1em;
text-transform: uppercase;
}
.nox table th:nth-child(1),
.nox table td:nth-child(1),
.nox table th:nth-child(2),
.nox table td:nth-child(2),
.nox table th:nth-child(3),
.nox table td:nth-child(3) {
width: 15%;
}
.nox table th:nth-child(4),
.nox table td:nth-child(4) {
width: 20%;
}
@media screen and (max-width: 768px) {
.nox table {
border: 0;
}
.nox table caption {
font-size: 1.3em;
}
.nox table thead {
border: none;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.nox table tr {
border-bottom: 3px solid #ddd;
display: block;
margin-bottom: .625em;
}
.nox table td {
border-bottom: 1px solid #ddd;
display: block;
font-size: .8em;
text-align: right;
}
.nox table td::before {

content: attr(data-label);
float: left;
font-weight: bold;
text-transform: uppercase;
}
.nox table td:last-child {
border-bottom: 0;
}
.nox table th:nth-child(1),
.nox table td:nth-child(1),
.nox table th:nth-child(2),
.nox table td:nth-child(2),
.nox table th:nth-child(3),
.nox table td:nth-child(3) {
width: 100%;
}
.nox table th:nth-child(4),
.nox table td:nth-child(4) {
width: 100%;
}
}
/* NOX Table end */
/* Auggie Slider start */
.auggie-slider {
position: relative;
margin: 1.5em 0 2em 0;
}
.auggie-slider-track {
display: flex;
gap: 14px;
overflow-x: auto;
overflow-y: hidden;
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
-webkit-overflow-scrolling: touch;
padding: 4px 4px 16px 4px;
scrollbar-width: thin;
scrollbar-color: rgba(255,255,255,0.4) rgba(255,255,255,0.08);
}
.auggie-slider-track::-webkit-scrollbar {
height: 8px;
}
.auggie-slider-track::-webkit-scrollbar-track {
background: rgba(255,255,255,0.08);
border-radius: 4px;
}
.auggie-slider-track::-webkit-scrollbar-thumb {
background: rgba(255,255,255,0.4);
border-radius: 4px;
}
.auggie-slider-track::-webkit-scrollbar-thumb:hover {
background: rgba(255,255,255,0.6);
}
.auggie-slide {
flex: 0 0 auto;
max-width: 500px;
scroll-snap-align: start;
}
.auggie-slide img {
width: 100%;
height: auto;
display: block;
border-radius: 6px;
}
.auggie-slide-caption {
margin: 8px 2px 0;
font-size: 0.9em;
line-height: 1.35;
opacity: 0.9;
}
.auggie-slider-hint {
font-size: 0.85em;
opacity: 0.6;
margin: 0 0 1em 0;
font-style: italic;
}
/* Auggie Slider end */
/* Auggie Table start */
.auggie-table-wrap {
overflow-x: auto;
margin: 0 0 2em 0;
}
.auggie-table {
width: 100%;
border-collapse: collapse;
font-size: 0.95em;
}
.auggie-table th {
text-align: left;
padding: 10px 12px;
border-bottom: 2px solid rgba(255,255,255,0.4);
font-weight: 600;
}
.auggie-table th.auggie-num,
.auggie-table td.auggie-num {
text-align: right;
}
.auggie-table td {
padding: 8px 12px;
border-bottom: 1px solid rgba(255,255,255,0.12);
}
.auggie-table tbody tr:last-child td {
border-bottom: none;
}

@media (max-width: 600px) {
.auggie-slide {
width: 300px;
}
}
/* Auggie Table end */
/* Card start */
.awe-art-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 24px;
margin: 1.5em 0 2em 0;
}
.awe-art-card {
display: flex;
flex-direction: column;
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 10px;
overflow: hidden;
transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.awe-art-card:hover {
transform: translateY(-2px);
border-color: rgba(139, 112, 209, 0.5);
box-shadow: 0 10px 30px rgba(139, 112, 209, 0.15);
}
.awe-art-card-image {
width: 100%;
aspect-ratio: 566 / 800;
overflow: hidden;
background: #111;
}
.awe-art-card-image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.awe-art-card-body {
display: flex;
flex-direction: column;
flex: 1;
padding: 18px 20px 20px;
}
.awe-art-card-title {
color: #8b70d1;
font-size: 1.2em;
font-weight: 600;
margin: 0 0 4px 0;
line-height: 1.3;
}
.awe-art-card-company {
margin: 0 0 14px 0;
font-size: 0.85em;
opacity: 0.65;
font-style: italic;
}
.awe-art-card-story {
margin: 0 0 6px 0;
font-size: 0.93em;
line-height: 1.55;
opacity: 0.9;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
line-clamp: 3;
overflow: hidden;
}
.awe-art-toggle {
position: absolute;
opacity: 0;
pointer-events: none;
width: 0;
height: 0;
}
.awe-art-toggle:checked ~ .awe-art-card-story {
display: block;
-webkit-line-clamp: unset;
line-clamp: unset;
overflow: visible;
}
.awe-art-readmore {
display: inline-block;
width: fit-content;
cursor: pointer;
color: #8b70d1;
font-size: 0.85em;
font-weight: 500;
margin: 0 0 16px 0;
user-select: none;
}
.awe-art-readmore:hover {
color: #a48be0;
}
.awe-art-readmore::before {
content: "Read more \2192"; /* arrow right */
}
.awe-art-toggle:checked ~ .awe-art-readmore::before {
content: "Show less \2191"; /* arrow up */
}
.awe-art-card-actions {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 14px;
margin-top: auto;
padding-top: 4px;
}
.awe-art-btn {
display: inline-block;
background: #8b70d1;
color: #fff;
padding: 8px 16px;
border-radius: 6px;
font-size: 0.88em;
font-weight: 600;
text-decoration: none;
transition: background 0.2s ease;
}
.awe-art-btn:hover,
.awe-art-btn:focus {
background: #7a5fc4;
color: #fff;
text-decoration: none;
}
.awe-art-video-link {
display: inline-flex;
align-items: center;
gap: 6px;
color: #8b70d1;
font-size: 0.88em;
text-decoration: none;
font-weight: 500;
}
.awe-art-video-link:hover,
.awe-art-video-link:focus {
text-decoration: underline;
color: #a48be0;
}
.awe-art-play {
display: inline-flex;
align-items: center;
justify-content: center;
width: 22px;
height: 22px;
border-radius: 50%;
background: rgba(139, 112, 209, 0.15);
font-size: 0.7em;
line-height: 1;
padding-left: 2px;
}
/* Card end */