/* ============================================
   CONTENT CONTAINERS
   ============================================ */

.page-content {
    background-color: #f3f3f3;
}

.main-content {
    padding: 45px 0;
    box-sizing: border-box;
}

/* ============================================
   ARTICLE DETAIL PAGE
   ============================================ */

.article-detail-section {
    padding: 60px 0;
    background-color: #f3f3f3;
}

.article-detail {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 40px;
}

/* Article header */
.article-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.article-title {
    font-size: 36px;
    color: #333;
    margin: 0 0 20px 0;
    line-height: 1.4;
    font-weight: 600;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    color: #666;
    font-size: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    color: #009300;
    font-size: 16px;
}

/* Article content */
.article-content {
    margin: 40px 0;
}

.content-body {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

/* Content style optimization */
.content-body h2,
.content-body h3,
.content-body h4 {
    color: #333;
    margin: 35px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.content-body h2 {
    font-size: 28px;
}

.content-body h3 {
    font-size: 22px;
}

.content-body h4 {
    font-size: 18px;
}

.content-body p {
    margin-bottom: 25px;
    text-align: justify;
}

/* Article images */
.article-image-container {
    margin: 25px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-body img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Article lists */
.content-body ul,
.content-body ol {
    margin: 20px 0;
    padding-left: 25px;
}

.content-body li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.content-body ul li {
    list-style-type: disc;
}

.content-body ol li {
    list-style-type: decimal;
}

/* Article tables */
.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.content-body table th,
.content-body table td {
    padding: 15px 20px;
    border: 1px solid #eaeaea;
    text-align: left;
}

.content-body table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #009300;
}

.content-body table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.content-body table tr:hover {
    background-color: #f0f7ff;
}

/* Article code blocks */
.content-body pre {
    background: #f5f7fa;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    overflow-x: auto;
    border-left: 4px solid #009300;
}

.content-body code {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 14px;
    color: #333;
}

/* Article quotes */
.content-body blockquote {
    border-left: 4px solid #009300;
    background: #f9f9f9;
    padding: 20px 25px;
    margin: 25px 0;
    color: #555;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

/* Article navigation */
.article-navigation {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-buttons .am-btn {
    min-width: 180px;
    font-size: 16px;
    padding: 12px 25px;
}

.nav-buttons .am-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background-color: #f5f5f5;
    color: #999;
    border-color: #ddd;
}

.nav-buttons .am-btn:first-child {
    margin-right: auto;
}

.nav-buttons .am-btn:last-child {
    margin-left: auto;
}

/* ============================================
   TIMELINE LIST PAGE
   ============================================ */

.timeline-section {
    margin-bottom: 40px;
}

.timeline-list {
    margin-bottom: 40px;
}

/* Timeline Item */
.timeline-item {
    margin-bottom: 20px;
}

.timeline-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    overflow: hidden;
}

.timeline-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.timeline-card:hover .timeline-date {
    background: #009300;
    color: #fff;
    transform: scale(1.05);
}

/* Timeline Date */
.timeline-date {
    background: #000;
    color: white;
    border-radius: 12px;
    padding: 20px;
    min-width: 80px;
    text-align: center;
    transition: all 0.3s ease;
    flex-shrink: 0; 
    box-shadow: 0 4px 15px rgba(0,0,0, 0.25) 
}

.date-day {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    display: block;
}

.date-month-year {
    font-size: 15px;
    opacity: 0.9;
    display: block;
}

/* Timeline Content */
.timeline-content {
    flex: 1;
    min-width: 0;
}

.timeline-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin: 0 0 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.timeline-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.timeline-title a:hover {
    color: #009300;
}

.timeline-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 12px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Timeline Meta */
.timeline-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #888;
}

.meta-category {
    background: rgba(0, 147, 0, 0.1);
    color: #009300;
    padding: 3px 10px;
    border-radius: 30px;
    font-weight: 500;
}

.meta-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-time:before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
    margin-right: 5px;
}

/* Timeline Action */
.timeline-action {
    flex-shrink: 0;
}

.timeline-action .am-btn {
    min-width: 120px;
    font-size: 14px;
    padding: 8px 20px;
}

/* ============================================
   ARTICLE LIST PAGE
   ============================================ */

.articles-section {
    margin-bottom: 40px;
}

.articles-grid {
    display: flex;
    flex-wrap: wrap;
}

.article-item {
    padding: 15px;
    box-sizing: border-box;
    width: 100%;
}

/* Article Card */
.article-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.article-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Article Image */
.article-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.article-image a {
    display: block;
    text-decoration: none;
}

.article-img {
    transition: transform 0.6s ease;
}

/* Article Content */
.article-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Article Meta */
.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
    color: #666;
}

.article-date,
.article-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-date i,
.article-views i {
    font-size: 14px;
    color: #009300;
}

/* Article Title */
.article-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin: 0 0 12px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 44px;
}

.article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: #009300;
}

/* Article Description */
.article-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Article Category */
.article-category {
    margin-top: 15px;
}

.category-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 147, 0, 0.1);
    color: #009300;
    font-size: 12px;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background: rgba(0, 147, 0, 0.2);
    transform: translateY(-1px);
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */

.product-detail-section {
    padding: 60px 0;
    background-color: #f3f3f3;
}

.product-title { 
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Product short description */
.product-excerpt {
    margin: 25px 0;
    padding: 20px;
    background: #f0f9f0;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.product-excerpt p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Price area */
.product-price-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #009300;
}

.price-current {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.price-label {
    font-weight: 600;
    margin-right: 15px;
    font-size: 1.6rem;
}

.price-value {
    font-size: 2.4rem;
    font-weight: 700;
    color: #009300;
}

.price-notice {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 1.3rem;
    background: #fff3cd;
    padding: 8px 12px;
    border-radius: 4px;
    border-left: 3px solid #ffc107;
}

.price-notice i {
    margin-right: 8px;
    color: #ffc107;
}

/* Keyword tags */
.product-tags {
    margin: 25px 0;
}

.product-tags h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
}

.product-tags h3 i {
    margin-right: 10px;
    color: #009300;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: #e9ecef;
    color: #495057;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: #009300;
    color: white;
    transform: translateY(-2px);
}

/* Action buttons */
.product-actions {
    margin: 15px 0;
    text-align: center;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
}

 

.call-btn {
    background: #007bff;
    border-color: #007bff;
}

.whatsapp-btn {
    background: #25D366;
    border-color: #25D366;
}

/* Video section */
.product-video-section {
    margin: 0px 0 40px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    width: 100%;
    min-height: 450px;
    border: none;
}

/* Product Header */
.product-header {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 40px;
}

.product-detail-body {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 40px;
}

.product-gallery,
.product-info {
    padding: 15px;
    box-sizing: border-box;
}

.product-detail-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Product Info */
.product-meta {
    margin: 25px 0;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(0, 147, 0, 0.08);
    border-radius: 8px;
    border-left: 4px solid #009300;
}

.price-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.price-value {
    font-size: 24px;
    color: #e53e3e;
    font-weight: 700;
}

.product-description-short {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 20px 0;
}

/* Product Content */
.product-content {
    border-top: 1px solid #eaeaea;
    padding-top: 40px;
}

/* Product Navigation */
.product-navigation {
    border-top: 1px solid #eaeaea;
    margin-top: 40px;
    padding-top: 20px;
}

/* ============================================
   SEARCH RESULTS PAGE
   ============================================ */

.search-section {
    background-color: #f3f3f3;
    padding: 45px 0;
}

/* Search Header */
.search-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.search-title {
    font-size: 36px;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.3;
    font-weight: 600;
}

.search-keyword {
    color: #e53e3e;
    font-weight: 700;
    background: rgba(229, 62, 62, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    margin: 0 5px;
}

.search-count {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.count-number {
    color: #009300;
    font-weight: 600;
}

/* Search Results Grid */
.search-results {
    margin-bottom: 40px;
}

.results-grid {
    display: flex;
    flex-wrap: wrap;
}

.result-item {
    padding: 15px;
    box-sizing: border-box;
    width: 100%;
}

/* Result Card */
.result-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.result-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.result-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Result Image */
.result-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.result-img {
    transition: transform 0.6s ease;
}

/* Result Content */
.result-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Result Meta */
.result-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
}

.result-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.result-date i {
    color: #009300;
    font-size: 14px;
}

.result-category {
    background: rgba(0, 147, 0, 0.1);
    color: #009300;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
}

/* Result Title */
.result-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin: 0 0 12px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 50px;
}

.highlight {
    background-color: #fffacd;
    color: #d48806;
    padding: 0 2px;
    border-radius: 2px;
    font-weight: 700;
}

/* Result Description */
.result-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Result Action */
.result-action {
    margin-top: 15px;
}

.read-more {
    color: #009300;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.result-card:hover .read-more {
    transform: translateX(5px);
    color: #007a00;
}

.read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.result-card:hover .read-more i {
    transform: translateX(3px);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.no-results-icon {
    color: #ccc;
    margin-bottom: 25px;
}

.no-results-title {
    font-size: 28px;
    color: #666;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.no-results-message {
    font-size: 16px;
    color: #888;
    line-height: 1.6;
    margin: 0 0 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.no-results-message strong {
    color: #e53e3e;
}

.no-results-suggestions {
    text-align: left;
    display: inline-block;
    background: #f8f9fa;
    padding: 20px 25px;
    border-radius: 10px;
    border-left: 4px solid #009300;
}

.no-results-suggestions p {
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
}

.no-results-suggestions ul {
    margin: 0;
    padding-left: 20px;
    color: #666;
}

.no-results-suggestions li {
    margin-bottom: 8px;
}

/* ============================================
   CATEGORY CONTENT PAGE
   ============================================ */

.category-section {
    background-color: #f3f3f3;
}

/* Category Article */
.category-article {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 40px;
}

/* Article Header */
.article-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.article-title {
    font-size: 36px;
    color: #009300;
    margin: 0;
    line-height: 1.3;
    font-weight: 600;
    text-transform: capitalize;
}

/* Article Content */
.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

/* Content style optimization */
.article-content h2,
.article-content h3,
.article-content h4 {
    color: #333;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.article-content h2 {
    font-size: 28px;
}

.article-content h3 {
    font-size: 22px;
}

.article-content h4 {
    font-size: 18px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.article-content ul,
.article-content ol {
    margin: 15px 0;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.article-content table th,
.article-content table td {
    padding: 12px 15px;
    border: 1px solid #eaeaea;
    text-align: left;
}

.article-content table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card {
    background: #333;
    border-radius: 20px;
    padding: 50px;
    max-width: 600px;
    width: 90%; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

.contact-title {
    font-size: 36px;
    color: #fff;
    text-align: center;
    margin: 0 0 40px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 20px;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2px;
}

/* Contact Info */
.contact-info {
    margin-top: 30px;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-left-color: rgba(255, 255, 255, 0.5);
}

.info-item i {
    font-size: 24px;
    color: #fff;
    width: 40px;
    text-align: center;
    opacity: 0.9;
}

.info-item span {
    font-size: 18px;
    line-height: 1.5;
    flex: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ============================================
   VIDEO COMPONENTS
   ============================================ */

/* Video cover container */
.video-cover-container {
    position: relative;
    display: block;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

.video-cover-container .ratio-4-3 {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.video-cover-container:hover .video-play-overlay {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.video-cover-container:hover .play-button {
    transform: scale(1.1);
}

.play-button svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.video-label {
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Video modal styles */
.video-player-modal .am-modal-dialog {
    max-width: 800px;
    width: 90%;
    margin: 20px auto;
}

.video-player-modal .am-modal-hd {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 16px;
}

.video-player-modal .am-modal-bd {
    padding: 0;
    background: #000;
}

.video-player-wrapper {
    width: 100%;
    background: #000;
}

.ratio-16-9 {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

#modal-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

/* Modal close button */
.video-player-modal .am-close {
    color: #666;
    font-size: 24px;
    line-height: 1;
    margin-top: -3px;
}

.video-player-modal .am-close:hover {
    color: #333;
}

/* No video style */
.video-cover-container.no-video {
    cursor: default;
}

.video-cover-container.no-video .video-play-overlay {
    display: none;
}

/* ============================================
   SIDEBAR NAVIGATION
   ============================================ */

.navside {
    position: relative;
    padding: 20px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.navside::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.navside-container {
    display: flex;
    justify-content: flex-start; /* Left align on mobile */
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    white-space: nowrap;
    min-width: min-content;
}

.navside-item {
    flex: 0 0 auto;
}

.navside-link {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.4rem;
    text-transform: capitalize;
    color: #333;
    text-decoration: none;
    background: #f5f5f5;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    scroll-snap-align: start; /* Scroll alignment */
}

.navside-link:hover {
    background: #e8f5e8;
    color: #000;
    border-color: #000;
    transform: translateY(-2px);
}

.navside-link.active {
    background: #000;
    color: #fff;
    border-color: #000;
    box-shadow: 0 4px 12px rgba(0, 147, 0, 0.2);
    position: relative;
    z-index: 1;
}

/* Article product related */
.am-article-product-hd {
    overflow: hidden;
}

.am-article-thumb {
    overflow: hidden;
    padding-bottom: 45rem;
    position: relative;
    background-color: #e6e6e6;
    border: 1px solid #e6e6e6;
}

.am-article-thumb img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.am-article-title {
    margin-bottom: 20px;
    font-weight: bold;
}

.am-article-thumb-tit {
    padding-left: 3rem;
    overflow: hidden;
}

.am-article-bd img {
    display: inline-block;
    border-radius: 30px;
}

.am-article-bd {
    font-size: 18px;
    line-height: 1.8;
}

.am-article-bd h2 {
    font-size: 3rem;
}

.am-article-bd h3 {
    font-size: 18px;
    margin: 3rem 0;
    position: relative;
}

.am-article-bd p {
    margin-bottom: 3rem;
}

.am-article-meta {
    margin-bottom: 3rem;
}

.am-article-hd {
    border-bottom: 1px solid #e6ece8;
    margin-bottom: 3rem;
    position: relative;
}

.am-article-bd {
    font-size: 16px;
}

.am-article-desc {
    padding: 15px;
    overflow: hidden;
    color: #999;
    font-size: 14px;
    border: 1px solid #f6f6f6;
    margin-bottom: 3rem;
    background: #fbfbfb;
}

.am-article-meta {
    font-size: 14px;
}

.am-article-lead {
    font-size: 14px;
}

.am-article-prne a {
    margin: 0 1rem;
    font-size: 1.8rem;
}

.corporate-item {
    min-height: 230px;
}