/* style/blog-nap-rut-tien-q99.css */
/* Base styles for the page content */
.page-blog-nap-rut-tien-q99 {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF5E1; /* Text Main color, assuming dark body background */
    background-color: #B71C1C; /* Background color */
}

.page-blog-nap-rut-tien-q99__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

/* Hero Section (Main Title Area) */
.page-blog-nap-rut-tien-q99__hero-section {
    padding-top: 10px; /* Small top padding as body has padding-top */
    padding-bottom: 60px;
    background-color: #B71C1C; /* Background color */
    position: relative;
    overflow: hidden;
}

.page-blog-nap-rut-tien-q99__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.3;
}

.page-blog-nap-rut-tien-q99__hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.3;
}

.page-blog-nap-rut-tien-q99__hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
    padding-top: 40px;
}

.page-blog-nap-rut-tien-q99__hero-content {
    flex: 1 1 50%;
    min-width: 300px;
    text-align: left;
}

.page-blog-nap-rut-tien-q99__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp for responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFF5E1; /* Text Main */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-blog-nap-rut-tien-q99__description {
    font-size: 1.125rem; /* 18px */
    margin-bottom: 30px;
    max-width: 600px;
    color: #FFF5E1; /* Text Main */
}

.page-blog-nap-rut-tien-q99__cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-blog-nap-rut-tien-q99__btn-primary,
.page-blog-nap-rut-tien-q99__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%; /* Ensure button doesn't overflow */
}

.page-blog-nap-rut-tien-q99__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color */
    color: #7A0E0E; /* Deep Red for contrast */
    border: 2px solid #F2B544; /* Border color */
    box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-blog-nap-rut-tien-q99__btn-primary:hover {
    background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
    box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
    transform: translateY(-2px);
}

.page-blog-nap-rut-tien-q99__btn-secondary {
    background: transparent;
    color: #FFF5E1; /* Text Main */
    border: 2px solid #F2B544; /* Border color */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-nap-rut-tien-q99__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-blog-nap-rut-tien-q99__hero-image {
    flex: 1 1 40%;
    min-width: 300px;
    text-align: center;
}

.page-blog-nap-rut-tien-q99__main-visual {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: 2px solid #F2B544; /* Border color */
}

/* General Section Styling */
.page-blog-nap-rut-tien-q99__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* Responsive H2 */
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #FFF5E1; /* Text Main */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-blog-nap-rut-tien-q99__text-block {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #FFF5E1; /* Text Main */
}