.breadcrumb {
max-width: 1225px;
margin: 150px auto 40px auto;
font-size: 13px;
color: var(--text-light);
padding: 18px 40px 0;
}
.nobreadcrumb {
max-width: 1225px;
margin: 150px auto 40px auto;
}
.breadcrumb a {
color: var(--text-light);
text-decoration: none;
}
.breadcrumb a:hover {
color: var(--primary);
}
.breadcrumb span {
margin: 0 6px;
color: #bbb;
} .page {
max-width: 1225px;
margin: 0 auto;
padding: 28px 40px 80px;
} .title-block {
margin-bottom: 48px;
}
h1 {
margin-bottom: 6px;
}
.date {
font-size: 13px;
color: #888;
} .hero-wrap {
width: 100%;
border-radius: 24px;
overflow: hidden;
margin-bottom: 48px;
}
.hero-wrap img {
width: 100%;
height: auto;
display: block;
} .body-text {
max-width: 808px;
margin: 0 auto;
}
.body-text a {
color: var(--primary);
}
.body-text h2:not(.list-title):not(.big-title) {
font-family: 'SukhumvitSet', sans-serif;
font-weight: 700;
font-style: normal;
font-size: 18px;
color: var(--text-light);
line-height: 28px;
margin: 24px 0;
}
.body-text h3 {
font-size: 18px;
font-weight: 700;
margin-bottom: 12px;
}
.body-text p,
.body-text li {
padding-bottom: 12px;
}
.body-text ul:not(.no-margin),
.body-text ol:not(.no-margin){
margin-left: 24px;
}
.body-text ol ul {
list-style: none;
margin-left: 0 !important;
padding: 8px 0;
}
.body-text p:last-child {
margin-bottom: 0;
} .gallery-grid {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto auto;
gap: 10px;
margin: 48px 0;
}
.g-item {
overflow: hidden;
border-radius: 24px;
cursor: pointer;
position: relative;
}
.g-item img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform .45s ease;
}
.g-item:hover img {
transform: scale(1.04);
} .g-item.tall {
grid-row: span 2;
}
.g-item.tall img {
aspect-ratio: unset;
height: 100%;
min-height: 360px;
} .g-item.short img {
aspect-ratio: 12/10;
} .gallery {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
margin: 24px 0;
}
.gallery .gallery-item img {
width: 100%;
height: 100%;
object-fit: contain;
} .lists-list {
display: flex;
flex-direction: column;
gap: 12px;
} .list-header {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 14px;
}
.list-number {
font-family: 'SukhumvitSet', sans-serif;
background-color: var(--primary-light);
color: var(--primary);
font-size: clamp(1.5rem, 1rem + 2vw, 2rem);
font-weight: 500;
width: 48px;
height: 48px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.list-title, 
.big-title {
color: var(--primary);
font-size: clamp(1.5rem, 1rem + 2vw, 2rem); font-weight: 700;
}
.big-title {
margin: 24px 0;
} .list-description {
font-family: 'SukhumvitSet', sans-serif;
font-weight: 400;
font-style: normal;
font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
line-height: 24px;
color: var(--text-light);
text-align: justify;
} .table-container {
width: 100%;
overflow-x: auto;
margin: 24px 0;
}
table {
width: 100%;
border-collapse: collapse;
min-width: 600px;
}
th,
td {
border: 1px solid var(--border-light);
padding: 16px 24px;
text-align: left;
}
th {
font-weight: 600;
text-align: center;
} tr {
transition: background-color 0.3s ease;
}
tr:hover {
background-color: rgba(230, 0, 126, 0.05);
} .js-animate {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease, transform 0.6s ease;
} .js-animate.visible {
opacity: 1;
transform: translateY(0);
}
@media (max-width: 768px) {
.breadcrumb {
margin: 150px auto 0 auto;
padding: 20px;
}
.nobreadcrumb {
margin: 150px auto 40px auto;
padding: 0
}
.page {
padding: 20px 24px 60px;
}
.gallery-grid {
grid-template-columns: 1fr;
margin-bottom: 40px;
}
.g-item.tall {
grid-row: span 1;
}
.g-item.tall img {
min-height: unset;
aspect-ratio: 16/10;
height: auto;
}
.list-header {
gap: 12px;
}
.list-number {
width: 36px;
height: 36px;
}
.list-description {
padding-left: 0;
margin-top: 8px;
}
th,
td {
padding: 12px 15px;
}
.gallery {
grid-template-columns: 1fr;
}
}