/*
Theme Name: GeneratePress Child
Author: John Smith
Description: Your description goes here
Version: 1.0
Template: generatepress

This is the child theme for GeneratePress theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/


/* ============================================
   GLOBAL TYPOGRAPHY & BASE STYLES
   ============================================ */
.main-title {
  display: none !important;
}
.entry-content {
    color: #2D3748;
    line-height: 1.75;
    font-size: 17px;
}

.entry-content p {
    margin-bottom: 1.2em;
    color: #4A5568;
}

.entry-content em {
    color: #718096;
    font-style: italic;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.entry-header {
    background: linear-gradient(135deg, #2C5F8D 0%, #3B9AB2 100%);
    padding: 1rem 1rem;
    margin: -40px -40px 1rem -40px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.entry-title {
    color: #ffffff !important;
    font-size: 2.05rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.entry-content h2 {
    color: #2C5F8D;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1.5rem 0 1.2rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #3B9AB2;
    position: relative;
}

.entry-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 80px;
    height: 3px;
    background: #4A8B6C;
}

.entry-content h3 {
    color: #4A8B6C;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.7rem 0 1rem 0;
    padding-left: 1rem;
    border-left: 4px solid #3B9AB2;
}

/* ============================================
   STYLED BLOCKS (Program Cards)
   ============================================ */
.styled-block {
    background: linear-gradient(135deg, #E8F4F8 0%, #ffffff 100%);
    border: 2px solid #E2E8F0;
    border-radius: 6px;
    padding: 1.4rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.styled-block::before {
    content: '📋';
    position: absolute;
    top: 0.1rem;
    right: 1rem;
    font-size: 2rem;
    opacity: 0.15;
}

.styled-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #3B9AB2;
}

.styled-block p strong {
    color: #2C5F8D;
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #E2E8F0;
}

.styled-block ul {
    margin: 0.75rem 0 0 0;
    padding-left: 0;
    list-style: none;
}

.styled-block ul li {
    padding: 0.4rem 0 0.4rem 1.4rem;
    position: relative;
    color: #4A5568;
    line-height: 1.6;
}

.styled-block ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4A8B6C;
    font-weight: bold;
    font-size: 1.125rem;
}

.styled-block ul li strong {
    color: #2C5F8D;
    font-weight: 600;
}

/* ============================================
   COLUMN BLOCKS (col-st)
   ============================================ */
.col-st {
    background: linear-gradient(135deg, #F0F8F5 0%, #ffffff 100%);
    border: 2px solid #E2E8F0;
    border-radius: 6px;
    padding: 1.4rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
}

.col-st::after {
    content: '🏛️';
    position: absolute;
    top: 0.1rem;
    right: 1rem;
    font-size: 2rem;
    opacity: 0.12;
}

.col-st:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #4A8B6C;
}

.col-st p strong {
    color: #4A8B6C;
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.1rem;
}

.col-st ul {
    margin: 0.75rem 0 0 0;
    padding-left: 0;
    list-style: none;
}

.col-st ul li {
    padding: 0.2rem 0 0.2rem 1.4rem;
    position: relative;
    color: #4A5568;
}

.col-st ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3B9AB2;
    font-weight: bold;
}

/* ============================================
   CUSTOM LISTS
   ============================================ */

.st-list {
    background: #E8F4F8;
    border-left: 4px solid #2C5F8D;
    border-radius: 0 6px 6px 0;
    padding: 0.2rem 1.3rem;
    margin: 0.75rem 0;
    list-style: none;
}

.st-list li {
    padding: 0.5rem 0 0.5rem 1.4rem;
    position: relative;
    color: #2D3748;
    font-weight: 500;
}

.st-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #2C5F8D;
    font-size: 1.1rem;
}

.st-list li strong {
    color: #2C5F8D;
}

.st-list-2 {
    background: #F0F8F5;
    border-left: 4px solid #4A8B6C;
    border-radius: 0 6px 6px 0;
    padding: 0.2rem 1.3rem;
    margin: 0.75rem 0;
    list-style: none;
}

.st-list-2 li {
    padding: 0.45rem 0 0.45rem 1.4rem;
    position: relative;
    color: #4A5568;
}

.st-list-2 li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #4A8B6C;
    font-size: 1rem;
    top: 9px;
}

.num-list {
    background: #FFF9F0;
    border-radius: 6px;
    padding: 1rem 1.5rem 1rem 2.5rem;
    margin: 0.75rem 0;
    counter-reset: num-counter;
    list-style: none;
}

.num-list li {
    padding: 0.2rem 0 0.2rem 1.55rem;
    position: relative;
    color: #2D3748;
    counter-increment: num-counter;
    margin-bottom: 0.2rem;
}

.num-list li:last-child {
    margin-bottom: 0;
}

.num-list li::before {
    content: counter(num-counter);
    position: absolute;
    left: -1.25rem;
    top: 10px;
    background: #3B9AB2;
    color: #ffffff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.num-list li strong {
    color: #2C5F8D;
}

.st-list-3 {
    background: #ffffff;
    border: 2px solid #E2E8F0;
    border-radius: 6px;
    padding: 0.8rem 1.5rem;
    margin: 0.75rem 0;
    list-style: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.st-list-3 li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    color: #4A5568;
    border-bottom: 1px solid #E2E8F0;
}

.st-list-3 li:last-child {
    border-bottom: none;
}

.st-list-3 li::before {
    content: '📌';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.st-list-3 li strong {
    color: #2C5F8D;
    font-weight: 600;
}

.st-list-4 {
    background: linear-gradient(to right, #E8F4F8, #ffffff);
    border: 2px solid #3B9AB2;
    border-radius: 6px;
    padding: 0.7rem 1.5rem;
    margin: 0.75rem 0;
    list-style: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.st-list-4 li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    color: #2D3748;
    font-weight: 500;
}

.st-list-4 li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

/* ============================================
   DISCLAIMER BLOCK
   ============================================ */
.disc-block {
    background: linear-gradient(135deg, #FFF9F0 0%, #FFF5E6 100%);
    border: 2px solid #E8D4B8;
    border-radius: 6px;
    padding: 1.5rem 1.5rem 1.5rem 3.5rem !important;
    margin: 2rem 0 !important;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.disc-block::before {
    content: 'ℹ️';
    position: absolute !important;
    top: 1.5rem !important;
    left: 1rem !important;
    font-size: 1.5rem;
}

.disc-block strong {
    color: #8B6914 !important;
    font-size: 1.125rem !important;
    display: inline !important;
    padding: 0 !important;
    margin: 0 !important;
}

.disc-block em {
    color: #6B5410 !important;
    font-style: italic !important;
    line-height: 1.8 !important;
    display: inline !important;
}

/* ============================================
   TABLE STYLES
   ============================================ */
.mtr-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0.3rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 6px;
    overflow: hidden;
}

.mtr-thead-th {
    background: linear-gradient(135deg, #2C5F8D 0%, #3B9AB2 100%);
}

.mtr-th-tag {
    color: #ffffff !important;
    font-weight: 600;
    padding: 1.25rem 1rem;
    text-align: center !important;
    font-size: 1rem;
    border-bottom: 3px solid #4A8B6C;
}

.mtr-th-tag .mtr-cell-content {
    text-align: center !important;
}

.mtr-td-tag {
    padding: 1rem 1rem;
    border-bottom: 1px solid #E2E8F0;
    color: #4A5568;
    vertical-align: top;
    transition: background 0.2s ease;
    text-align: center !important;
}

.mtr-td-tag .mtr-cell-content {
    text-align: center !important;
}

.mtr-table tbody tr {
    background: #ffffff;
}

.mtr-table tbody tr:nth-child(even) {
    background: #E8F4F8;
}

.mtr-table tbody tr:hover {
    background: #F0F8F5;
}

.mtr-table tbody tr:hover .mtr-td-tag {
    color: #2D3748;
}

/* ============================================
   COLUMN LAYOUTS
   ============================================ */
.wp-block-columns {
    margin-bottom: 1.5rem;
    gap: 1.5rem;
}

.wp-block-column {
    flex-basis: 100%;
}

/* ============================================
   IMAGES
   ============================================ */
.wp-block-image {
    margin: 1rem 0;
}

.wp-block-image img {
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

/* ============================================
   SITE HEADER STYLES
   ============================================ */
.site-header,
.site-header.has-inline-mobile-toggle {
    background: linear-gradient(135deg, #C2DDE8 0%, #D0E8DD 100%) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.09) !important;
}

.inside-header {
    background: transparent !important;
    padding: 6px 40px !important;
}

.main-navigation .main-nav ul li a {
    padding-left: 20px;
    padding-right: 20px;
    line-height: 40px;
    background: rgba(255, 255, 255, 0.25) !important;
    border-radius: 4px;
    margin: 0 5px;
    transition: all 0.3s ease;
    color: #2D3748 !important;
    font-weight: 500;
}

.main-navigation .main-nav ul li a:hover {
    background: rgba(255, 255, 255, 0.45) !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.main-navigation .main-nav ul li.current-menu-item a {
    background: rgba(255, 255, 255, 0.5) !important;
    font-weight: 600;
}

.main-title a {
    color: #2C5F8D !important;
    font-weight: 700;
    transition: color 0.3s ease;
}

.main-title a:hover {
    color: #3B9AB2 !important;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.site-footer {
    background: linear-gradient(135deg, #2C5F8D 0%, #3B9AB2 100%) !important;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08) !important;
    margin: 0 !important;
    padding: 0 !important;
}

.site-info {
    padding: 0.1rem 0 !important;
    background: linear-gradient(135deg, #2C5F8D 0%, #3B9AB2 100%) !important;
}

.inside-site-info {
    max-width: 1200px;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
}

.copyright-bar {
    text-align: center;
    position: relative;
    padding: 0.8rem 0 !important;
    margin: 0 !important;
}

.copyright {
    color: #ffffff !important;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
    margin: 0 !important;
    padding: 0 !important;
}

/* ============================================
   SITE MAIN
   ============================================ */
.site-main .wp-block-group__inner-container {
    padding: 3px !important;
}

/* ============================================
   FOCUS STATES
   ============================================ */
a:focus,
button:focus {
    outline: 3px solid #3B9AB2;
    outline-offset: 2px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .separate-containers .inside-article, .separate-containers .comments-area, .separate-containers .page-header, .separate-containers .paging-navigation, .one-container .site-content, .inside-page-header {
    padding: 30px;
    padding-bottom: 10px !important;
  }
  .wp-block-image {
  margin: 0rem 0;
}
    .entry-header {
        padding: 1rem 1rem;
        margin: -20px -20px 1rem -20px;
    }
    
    .entry-title {
        font-size: 1.75rem;
    }
    
    .entry-content {
        font-size: 16px;
    }
    
    .entry-content h2 {
        font-size: 1.5rem;
        margin: 1.5rem 0 1.2rem 0;
    }
    
    .entry-content h3 {
        font-size: 1.25rem;
        margin: 1.7rem 0 1rem 0;
    }
    
    .styled-block,
    .col-st {
        padding: 1.4rem;
    }
    
    .styled-block::before {
        font-size: 2rem;
    }
    
    .col-st::after {
        font-size: 2rem;
    }
    
    .st-list,
    .st-list-2 {
        padding: 0.2rem 0.8rem;
    }
    
    .st-list-3,
    .st-list-4 {
        padding: 0.8rem 0.8rem;
    }
    
    .st-list-4 {
        padding: 0.7rem 0.8rem;
    }
    
    .num-list {
        padding: 1rem 1.5rem 1rem 1.9rem;
    }
    
    .disc-block {
        padding: 1.5rem 1.5rem 1.5rem 1.5rem !important;
    }
    
    .disc-block::before {
        display:none;
    }
    
    .mtr-th-tag,
    .mtr-td-tag {
        padding: 1rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .inside-header {
        padding: 6px 20px !important;
    }
    
    .main-navigation .main-nav ul li a {
        padding-left: 15px;
        padding-right: 15px;
        margin: 0 3px;
    }
    
    .inside-site-info {
        padding: 0 1rem !important;
    }
    
    .copyright-bar {
        padding: 0.8rem 0 !important;
    }
    
    .copyright {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .entry-title {
        font-size: 1.5rem;
    }
    
    .entry-content h2 {
        font-size: 1.25rem;
    }
    
    .styled-block::before,
    .col-st::after {
        font-size: 1.5rem;
    }
    
    .mtr-table {
        font-size: 0.8125rem;
    }
    
    .copyright {
        font-size: 0.8125rem;
    }
    
    .inside-header {
        padding: 6px 15px !important;
    }
    
    .main-navigation .main-nav ul li a {
        padding-left: 12px;
        padding-right: 12px;
        margin: 0 2px;
    }
}