
/* --- TWO-LINE MAIN TITLE --- */
.page-main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 100px auto;
    text-align: center;
    line-height: 1.1;
    color: #111;
}

.page-main-title span {
    display: block;
    white-space: nowrap; /* Pinapanatiling isang linya ang bawat span */
}

/* --- IMAGE STYLING --- */
.function-image-wrapper {
    width: 100%;
    max-width: 950px;
    margin: 20px auto 50px;
    display: flex;
    justify-content: center;
}

.center-tire-only {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* --- ARTICLE CONTENT (The News Look) --- */
.news-article-container, 
.function-content {
    max-width: 850px;
    width: 90%;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    color: #333;
}

.intro-text, 
.article-intro {
    font-size: 1.05rem;
    margin-bottom: 15px;
    text-align: justify; /* Pantay na gilid gaya ng sa dyaryo/news */

}
.article-intro i {
    font-style: italic;
}

/* Sub-headers: All Caps & Bold */
.article-main-title {
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 15px 0 10px 0;
    color: #000;
    letter-spacing: 0.5px;
}

/* --- BULLET POINTS (Black Dots) --- */
.article-features {
    list-style-type: disc; /* Gumagamit ng bilog na bala */
    padding-left: 40px;
    margin-bottom: 30px;
}

.article-features li {
    margin-bottom: 12px;
    font-size: 1rem;
}

.article-features li strong {
    font-weight: 800;
    color: #000;
}
/* --- QUOTE STYLE (Image 3) --- */
.article-quote {
    font-family: 'Arial', sans-serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #333;
    text-align: center;
    padding: 0px 10%; /* Binibigyan ng space sa gilid para mag-center */
    margin: 20px 0;
    line-height: 1.6;
}

/* --- INDENTED LIST STYLE (Image 1) --- */
/* Ginaya nito ang malaking space sa kaliwa na walang bullet dots */
.article-features-indented {
    list-style: none;
    padding-left: 60px; /* Ito ang saktong indent gaya ng sa picture */
    margin: 20px 0 30px 0;
}

.article-features-indented li {
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.5;
}

/* --- TEXT ALIGNMENT --- */


/* Bold labels sa loob ng listahan */
.article-features-indented li strong {
    font-weight: 800;
    color: #000;
    margin-right: 5px;
}

/* Mobile responsive para sa indent */
@media (max-width: 768px) {
    .article-features-indented {
        padding-left: 25px; /* Liitan ang indent sa mobile */
    }
}

/* --- RELATED LINKS SECTION --- */
.related-links-container {
    max-width: 1200px;
    width: 90%;
    margin: 60px auto;
}

.related-title {
    font-family: 'Arial Black', sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 1px solid #ccc;
    text-transform: uppercase;
    color: #111;
}

/* Ang Red Accent sa ilalim ng Title */
.related-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 60px;
    height: 4px;
    background-color: #E21B24;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dalawang column sa desktop */
    gap: 15px;
    margin-top: 30px;
}

.related-card {
    background-color: #2e2e2e; /* Gray background gaya ng image */
    height: 75px;
    display: flex;
    align-items: center;
    padding: 0 25px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.related-card span {
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.related-card:hover {
    background-color: #E21B24; /* Nagiging pula pag hino-hover */
    transform: translateX(8px); /* Konting usog pakanan */
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .page-main-title {
        font-size: 1.5rem;
    }
    
    .page-main-title span {
        white-space: normal; /* Payagan mag-wrap sa maliit na screen */
    }

    .related-grid {
        grid-template-columns: 1fr; /* Isang column na lang sa mobile */
    }

    .article-features {
        padding-left: 20px;
    }
}

.info-block {
    /* Naka-set sa 0 ang padding-left para sagad sa dulo ang header */
    padding:  0 -1px 10px; 
    margin-bottom: 0px;
    border-left: 0px solid transparent; 
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    overflow: hidden;
}

/* --- HOVER EFFECT WITH MOVEMENT --- */
.info-block:hover {
    /* Magkakaroon ng pulang border at uusog pakanan */
    border-left: 5px solid #d32f2f;
    background-color: #fcfcfc;
    padding-left: 20px; /* Ang "galaw" na effect */
}
@media (max-width: 768px) {
    .info-block:hover {
        padding-left: 10px;
    }
  
}