.page-blog {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F3F8FF; /* Text Main */
    background-color: var(--deep-navy); /* Body background from shared.css */
}

.page-blog__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px 16px;
    box-sizing: border-box;
}

.page-blog__hero-section {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    background-color: transparent;
}

.page-blog__hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    padding: 40px 16px;
}

.page-blog__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    color: #F3F8FF; /* Text Main */
}

.page-blog__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #F3F8FF; /* Text Main */
}

.page-blog__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #AFC4E8; /* Text Secondary */
}

.page-blog__cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-blog__btn-primary,
.page-blog__btn-secondary,
.page-blog__read-more-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog__btn-primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    color: #F3F8FF; /* Text Main */
    border: none;
}

.page-blog__btn-primary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.page-blog__btn-secondary {
    background-color: transparent;
    color: #F3F8FF; /* Text Main */
    border: 2px solid #2B73F6;
}

.page-blog__btn-secondary:hover {
    transform: translateY(-2px);
    background-color: rgba(43, 115, 246, 0.1);
}

.page-blog__hero-image {
    flex: 1 1 45%;
    text-align: center;
    min-width: 300px;
}

.page-blog__side-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.page-blog__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #F3F8FF; /* Text Main */
}

.page-blog__section-description {
    font-size: 1.05em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #AFC4E8; /* Text Secondary */
}

.page-blog__dark-section {
    background-color: #10233F; /* Card BG */
    padding: 60px 0;
}

.page-blog__intro-section .page-blog__container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-blog__icon-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.page-blog__icon-box {
    flex: 1 1 30%;
    max-width: 350px;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for cards */
    border: 1px solid #244D84; /* Border */
}

.page-blog__icon-box-media {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #1D5FD1; /* Auxiliary color */
    box-shadow: 0 0 15px rgba(29, 95, 209, 0.5);
}

.page-blog__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-blog__icon-box-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #F3F8FF; /* Text Main */
}

.page-blog__icon-box-text {
    font-size: 0.95em;
    color: #AFC4E8; /* Text Secondary */
}

.page-blog__categories-section {
    padding: 60px 0;
}

.page-blog__category-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog__category-card {
    display: flex;
    flex-direction: column;
    background-color: #10233F; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #F3F8FF; /* Text Main */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #244D84; /* Border */
}

.page-blog__category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-blog__category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-blog__category-card h3 {
    font-size: 1.4em;
    font-weight: 600;
    margin: 15px 15px 5px;
    color: #F3F8FF; /* Text Main */
}

.page-blog__category-count {
    font-size: 0.9em;
    color: #AFC4E8; /* Text Secondary */
    margin: 0 15px 15px;
}

.page-blog__latest-posts-section {
    padding: 60px 0;
}

.page-blog__post-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog__post-card {
    background-color: #10233F; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #244D84; /* Border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog__post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-blog__post-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-blog__post-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-blog__post-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-blog__post-title a {
    color: #F3F8FF; /* Text Main */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog__post-title a:hover {
    color: #1D5FD1; /* Auxiliary color */
}