/* TIPS News Page Styles */

/* Header Placeholder Height */
#header-placeholder {
    height: 100px;
}

/* Dark Filter for Title Section */
.title-section--dark {
    margin-top: 0;
    position: relative;
}

.title-section--dark::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    pointer-events: none;
}

.title-section--dark .container {
    position: relative;
    z-index: 2;
    min-height: auto;
    display: block;
    justify-content: flex-start;
}

.title-section--dark .title-hero {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.title-section--dark .magazine-subtitle {
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* News Article Container */
.tips-article {
    background: white;
    margin-bottom: 60px;
    padding: 40px;
    /* border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
}

.tips-article-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.4;
    padding-bottom: 20px;
    word-break: break-all;
    border-bottom: 3px solid #282829;
}

.tips-article-content {
    font-size: 1.1rem;
    line-height: 2;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.tips-article-content strong {
    font-weight: 700;
    color: #007bff;
}

/* Image Grid */
.tips-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.tips-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.tips-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Divider */
.tips-divider {
    height: 2px;
    background: linear-gradient(90deg, #e0e0e0 0%, transparent 100%);
    margin: 60px 0;
}

/* Table Styles */
.tips-table-wrapper {
    margin: 30px 0;
    overflow-x: auto;
}

.tips-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border: 1px solid #e0e0e0;
}

.tips-table th,
.tips-table td {
    padding: 5px 18px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.tips-table th {
    background: #f8f9fa;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    width: 150px;
    vertical-align: middle;
}

/* Dark header style for tables */
.tips-table th.dark-header {
    background: #2c3e50;
    color: white;
    text-align: center;
}

.tips-table td {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
}

/* Centered table cells */
.tips-table td.centered {
    text-align: center;
    vertical-align: middle;
}

/* Table section title */
.tips-table-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* Table info text */
.tips-table-info {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

/* Table header styles */
.tips-table-header-gray {
    text-align: center;
    background: #e9ecef;
}

/* Table cell width styles */
.tips-table-cell-50 {
    width: 50%;
    text-align: center;
    vertical-align: middle;
}

.tips-table-cell-30 {
    width: 30%;
    text-align: center;
    vertical-align: middle;
}

.tips-table-cell-70 {
    width: 70%;
    text-align: center;
    vertical-align: middle;
}

/* Table wrapper with spacing */
.tips-table-wrapper-spaced {
    margin-top: 40px;
}

/* Single column image grid */
.tips-image-grid-single {
    grid-template-columns: 1fr;
}

.tips-table-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-table-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.tips-table-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .tips-article {
        padding: 30px 0px;
        margin-bottom: 40px;
    }

    .tips-article-title {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .tips-article-content {
        font-size: 1rem;
        line-height: 1.9;
    }

    .tips-image-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 30px 0;
    }

    .tips-image-item {
        height: 350px;
    }

    .tips-table th,
    .tips-table td {
        padding: 10px;
        font-size: 14px;
    }

    .tips-table th {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .tips-image-item {
        height: 280px;
    }

    .tips-article {
        padding: 0px;
        text-align: center;
    }


    .tips-article-content {
        font-size: 14px;
        line-height: 1.8;
    }

    .tips-image-grid {
        margin: 25px 0;
    }

    .tips-table th,
    .tips-table td {
        padding: 8px;
        font-size: 13px;
    }

    .tips-table th {
        width: 80px;
    }

    .tips-table-list li {
        padding: 6px 0;
        font-size: 13px;
    }
}