/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Site Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

.header-container {
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
}

.logo-malay {
    color: #1a1a1a;
}

.logo-mail {
    color: #ec1c24;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #333;
    border-radius: 50%;
    transition: all 0.2s;
}

.social-links a:hover {
    background-color: #333;
}

.social-links a:hover svg {
    fill: #fff;
}

.social-links svg {
    width: 16px;
    height: 16px;
    fill: #333;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 8px;
    width: 40px;
    height: 40px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #ec1c24;
    transition: 0.3s;
}

/* Main Navigation */
.main-nav {
    background-color: #f9f8f8;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
}

.nav-container::-webkit-scrollbar {
    display: none;
}

.nav-link {
    flex-shrink: 0;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #ec1c24;
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.article-category a {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #ec1c24;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Article Title */
.article-title {
    font-family: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* Article Info */
.article-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.article-author {
    font-weight: 600;
    color: #1a1a1a;
}

.separator {
    color: #ccc;
}

.article-date {
    font-style: italic;
}

/* Share Bar */
.share-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    color: #ffffff;
    transition: opacity 0.2s;
}

.share-btn:hover {
    opacity: 0.85;
}

.share-btn.facebook {
    background-color: #3b5998;
}

.share-btn.twitter {
    background-color: #000000;
}

.share-btn.whatsapp {
    background-color: #25d366;
}

.share-btn.telegram {
    background-color: #0088cc;
}

.share-btn.email {
    background-color: #666666;
}

/* Article Image */
.article-image {
    margin-bottom: 25px;
}

.article-image img {
    width: 100%;
    display: block;
}

.article-image figcaption {
    margin-top: 12px;
    padding: 12px 15px;
    font-size: 16px;
    color: #1a1a1a;
    font-style: italic;
    line-height: 1.5;
    background: linear-gradient(to right, #fff5f5, #ffffff);
    border-left: 3px solid #ec1c24;
    border-radius: 0 6px 6px 0;
}

/* Article Body */
.article-body {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

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

.article-body p:last-child {
    margin-bottom: 0;
}

.article-body strong {
    font-weight: 700;
    color: #1a1a1a;
}

.trigger {
    text-decoration: underline;
    text-decoration-color: #ec1c24;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    font-weight: 700;
}

.article-body h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #ec1c24;
    margin: 30px 0 15px;
    line-height: 1.4;
}

.article-body ul {
    margin: 0 0 20px 0;
    padding: 0;
    list-style: none;
}

.article-body ul li {
    margin-bottom: 12px;
    line-height: 1.6;
    padding-left: 28px;
    position: relative;
}

.article-body ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free", sans-serif;
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #ec1c24;
    font-size: 14px;
}

.article-body ol {
    margin: 0 0 20px 0;
    padding: 0;
    list-style: none;
    counter-reset: ol-counter;
}

.article-body ol li {
    margin-bottom: 12px;
    line-height: 1.6;
    padding-left: 32px;
    position: relative;
    counter-increment: ol-counter;
}

.article-body ol li::before {
    content: counter(ol-counter);
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background: #ec1c24;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-body blockquote {
    margin: 25px 0;
    padding: 20px 25px;
    background-color: #f7f7f7;
    border-left: 4px solid #ec1c24;
    font-style: italic;
}

.article-body blockquote p {
    margin-bottom: 15px;
}

.article-body blockquote p:last-child {
    margin-bottom: 0;
}

.article-body blockquote ul {
    margin-top: 15px;
    font-style: normal;
}

.article-body blockquote ul li::before {
    content: "\f058";
    color: #ec1c24;
}

.article-body figure {
    margin: 25px 0;
}

.article-body figure img[src*="product"] {
    max-width: 280px;
    display: block;
    margin: 0 auto;
}

/* Progress Images */
.progress-images {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 25px 0;
}

.progress-item {
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 180px;
    max-width: 300px;
    text-align: center;
    overflow: hidden;
}

.progress-item img {
    width: 100%;
    height: auto;
    display: block;
}

.progress-item p {
    margin: 0;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    padding: 14px 10px;
    background-color: #ec1c24;
}

@media (max-width: 992px) {
    .progress-item {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 576px) {
    .progress-images {
        width: 100%;
    }
    .progress-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Diagram */
.diagram-wrap {
    margin: 30px 0;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 12px;
    border: 1px solid #eee;
}

.diagram-title {
    font-size: 18px;
    font-weight: 700;
    color: #ec1c24;
    text-align: center;
    margin-bottom: 8px;
}

.diagram-description {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
}

.diagram {
    max-width: 400px;
    margin: 0 auto;
}

.diagram-bars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    height: 200px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ddd;
}

.diagram-bar {
    width: 80px;
    height: var(--height);
    background: linear-gradient(to top, #ec1c24, #ff6b6b);
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    transition: transform 0.3s;
}

.diagram-bar:hover {
    transform: scaleY(1.02);
}

.diagram-bar:nth-child(2) {
    background: linear-gradient(to top, #ff9800, #ffb74d);
}

.diagram-bar:nth-child(3) {
    background: linear-gradient(to top, #9e9e9e, #bdbdbd);
}

.bar-value {
    position: absolute;
    top: -28px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.diagram-labels {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 12px;
}

.diagram-label {
    width: 80px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Quiz Section */
.quiz-wrap {
    margin: 30px 0;
    border: 2px solid #ec1c24;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.quiz-header {
    background: #ec1c24;
    padding: 15px 20px;
}

.quiz-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.quiz-body {
    padding: 25px 20px;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

.quiz-question {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 16px;
}

.quiz-option:hover {
    border-color: #ec1c24;
    background: #fff5f5;
}

.quiz-option.selected {
    border-color: #ec1c24;
    background: #ec1c24;
    color: #fff;
}

.quiz-progress {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: #f5f5f5;
}

.quiz-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.quiz-dot.active {
    background: #ec1c24;
    color: #fff;
}

.quiz-dot.completed {
    background: #4caf50;
    color: #fff;
}

/* Quiz Form */
.quiz-result-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.product-preview {
    text-align: center;
    margin-bottom: 20px;
}

.product-preview img {
    max-width: 200px;
}

.quiz-timer {
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
}

.quiz-timer .timer {
    font-weight: 700;
    color: #ec1c24;
    font-size: 20px;
}

.quiz-prices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.old-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 28px;
    font-weight: 700;
    color: #ec1c24;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-form input, .order-form select {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.order-form select {
    width: 100%;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.order-form input:focus, .order-form select:focus {
    outline: none;
    border-color: #ec1c24;
}

.order-btn {
    padding: 18px;
    background: #ec1c24;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.order-btn:hover {
    background: #c91820;
}

.quiz-stock {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.quiz-stock span {
    font-weight: 700;
    color: #ec1c24;
}

/* Comments Section */
.comments-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.comments-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 75px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    border: 1px solid #eee;
}

.comment-form-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comment-form-row .comment-name {
    flex: 1;
}

.comment-form input,
.comment-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
}

.comment-form textarea {
    min-height: 80px;
    resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #ec1c24;
}

/* Avatar Upload */
.avatar-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.avatar-upload-label {
    cursor: pointer;
}

.avatar-preview {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px dashed #ccc;
    transition: all 0.2s;
}

.avatar-preview:hover {
    border-color: #ec1c24;
    background: #f5f5f5;
}

.avatar-preview.has-image {
    border-style: solid;
    border-color: #ec1c24;
}

.avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    font-size: 24px;
    color: #999;
}

.avatar-hint {
    font-size: 11px;
    color: #888;
}

/* Photo Upload */
.photo-upload {
    cursor: pointer;
}

.photo-upload-btn {
    display: inline-block;
    padding: 8px 14px;
    background: #f0f0f0;
    border-radius: 6px;
    font-size: 13px;
    color: #666;
    transition: all 0.2s;
}

.photo-upload-btn:hover {
    background: #e0e0e0;
    color: #333;
}

.photo-preview {
    position: relative;
    display: inline-block;
    margin-left: 10px;
}

.photo-preview img {
    max-width: 100px;
    max-height: 60px;
    border-radius: 6px;
    object-fit: cover;
}

.photo-remove {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ec1c24;
    color: #fff;
    border: none;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-remove:hover {
    background: #c91820;
}

/* Rating Select */
.rating-select {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-label {
    font-size: 14px;
    color: #666;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars .star {
    font-size: 22px;
    color: #ddd;
    cursor: pointer;
    transition: all 0.15s;
    user-select: none;
}

.rating-stars .star:hover,
.rating-stars .star.hover {
    color: #f5a623;
    transform: scale(1.1);
}

.rating-stars .star.selected {
    color: #f5a623;
}

.rating-clear {
    background: #e0e0e0;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #666;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.rating-clear:hover {
    background: #ccc;
    color: #333;
}

/* Avatar Letter Circle */
.avatar-letter {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec1c24, #ff6b6b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.comment.reply .avatar-letter {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.comment-submit {
    align-self: flex-end;
    padding: 12px 30px;
    background: #ec1c24;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.comment-submit:hover {
    background: #c91820;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.comment {
    display: flex;
    gap: 15px;
    /*padding-bottom: 20px;*/
    border-bottom: 1px solid #eee;
}

.comment.reply {
    border-bottom: none;
    padding-bottom: 0;
}

.comment-avatar {
    flex-shrink: 0;
}

.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.comment-author {
    font-weight: 600;
    color: #1a1a1a;
}

.comment-date {
    font-size: 13px;
    color: #888;
}

.comment-body {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.comment-rating {
    color: #f5a623;
    font-size: 12px;
    margin-left: 8px;
}

.comment-image {
    margin-top: 10px;
}

.comment-image img {
    max-width: 100%;
    border-radius: 8px;
    cursor: pointer;
}

.comment-actions {
    display: flex;
    gap: 15px;
    margin-top: 8px;
    font-size: 13px;
}

.comment-action {
    color: #666;
    cursor: pointer;
}

.comment-action:hover {
    color: #ec1c24;
}

.comment-likes {
    color: #666;
    margin-left: auto;
}

.comments-count {
    font-weight: 400;
    color: #888;
}

.like-btn {
    cursor: pointer;
    transition: all 0.2s;
}

.like-btn.liked {
    color: #ec1c24;
}

.like-btn:hover {
    opacity: 0.8;
}

.reply-btn {
    cursor: pointer;
}

.reply-btn:hover {
    color: #ec1c24;
}

.comment-reply-to {
    font-size: 13px;
    color: #888;
    margin-top: 5px;
    padding: 5px 10px;
    background: #f5f5f5;
    border-radius: 4px;
    display: inline-block;
}

.reply-form-container {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.reply-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reply-form input,
.reply-form textarea {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
}

.reply-form textarea {
    min-height: 60px;
    resize: vertical;
}

.reply-form input:focus,
.reply-form textarea:focus {
    outline: none;
    border-color: #ec1c24;
}

.reply-form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.reply-form-actions button {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.reply-cancel {
    background: #f0f0f0;
    color: #666;
}

.reply-cancel:hover {
    background: #e0e0e0;
}

.reply-submit {
    background: #ec1c24;
    color: #fff;
}

.reply-submit:hover {
    background: #c91820;
}

.replies-container {
    margin-top: 15px;
    padding-left: 20px;
    border-left: 2px solid #eee;
}

.comment.reply {
    padding: 10px 0;
}

.comment.reply .comment-avatar img {
    width: 40px;
    height: 40px;
}


/* CTA Button */
.cta-button {
    display: block;
    margin: 30px 0;
    padding: 18px 30px;
    background: #ec1c24;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.cta-button:hover {
    background: #c91820;
}

/* Article Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tags-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.article-tags a {
    display: inline-block;
    padding: 6px 12px;
    background-color: #f0f3f8;
    border-radius: 4px;
    font-size: 13px;
    color: #333;
    transition: background-color 0.2s;
}

.article-tags a:hover {
    background-color: #e0e5ed;
}

/* Related Stories */
.related-stories {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #ec1c24;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.story-card {
    display: block;
}

.story-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    margin-bottom: 12px;
}

.story-card h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    transition: color 0.2s;
}

.story-card:hover h3 {
    color: #ec1c24;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 0;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 35px;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    font-size: 14px;
    color: #aaa;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-social a {
    font-size: 14px;
    color: #aaa;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #ec1c24;
}

.footer-copyright {
    font-size: 13px;
    color: #666;
}

/* Responsive - Navigation */
@media (max-width: 1140px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .social-links {
        display: none;
    }

    .article-title {
        font-size: 24px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .story-card {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 15px;
        align-items: start;
    }

    .story-card img {
        margin-bottom: 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 22px;
    }

    .article-body {
        font-size: 16px;
    }

    .nav-link {
        padding: 12px 12px;
        font-size: 13px;
    }
}
