/* ============================================
   SCHOLARSHIP POST PAGE - Premium Design 2026
   Beautiful, Clean, Professional Blog Format
============================================ */

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warning-gradient: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fafbfc;
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   POST HEADER
============================================ */
.post-header {
    background: var(--primary-gradient);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.post-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9em;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.post-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.badge {
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85em;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-international {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-featured {
    background: linear-gradient(135deg, #ffd89b, #19547b);
    color: white;
}

.badge-deadline {
    background: linear-gradient(135deg, #fc8181, #e53e3e);
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.post-title {
    font-size: 3.5em;
    font-weight: 900;
    line-height: 1.2;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.post-subtitle {
    font-size: 1.3em;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.post-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95em;
}

.meta-icon {
    font-size: 1.2em;
}

/* ============================================
   FEATURED IMAGE
============================================ */
.featured-image {
    position: relative;
    max-width: 1200px;
    margin: -80px auto 0;
    padding: 0 20px;
    z-index: 10;
}

.featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.image-overlay {
    position: absolute;
    bottom: 30px;
    right: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 25px 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.funding-highlight {
    text-align: center;
}

.funding-amount {
    display: block;
    font-size: 2em;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.funding-period {
    display: block;
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* ============================================
   QUICK INFO SECTION
============================================ */
.quick-info-section {
    padding: 100px 0 60px;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 5px solid;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-gradient-1 { border-left-color: #667eea; }
.card-gradient-2 { border-left-color: #48bb78; }
.card-gradient-3 { border-left-color: #ed8936; }
.card-gradient-4 { border-left-color: #f56565; }

.info-card .card-icon {
    font-size: 2.5em;
    flex-shrink: 0;
}

.info-card .card-content h4 {
    font-size: 0.9em;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 5px;
}

.info-card .card-content p {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--text-primary);
}

/* ============================================
   MAIN CONTENT LAYOUT
============================================ */
.post-content {
    padding: 40px 0 80px;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.main-column {
    min-width: 0;
}

/* ============================================
   CONTENT SECTIONS
============================================ */
.content-section {
    margin-bottom: 80px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.section-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 800;
    flex-shrink: 0;
}

.section-header h2 {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.lead-text {
    font-size: 1.2em;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.highlight-box {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-left: 5px solid var(--primary-gradient);
    border-radius: var(--radius-lg);
    margin: 30px 0;
}

.highlight-icon {
    font-size: 2.5em;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.highlight-content p {
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ============================================
   DETAIL CARDS
============================================ */
.detail-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.detail-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: #667eea;
}

.detail-card.featured-card {
    background: linear-gradient(135deg, #667eea05, #764ba205);
    border: 2px solid #667eea;
}

.detail-card.deadline-card {
    background: linear-gradient(135deg, #fc818105, #e53e3e05);
    border: 2px solid #fc8181;
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
}

.detail-icon {
    font-size: 2em;
}

.detail-header h3 {
    font-size: 1.6em;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.detail-body {
    padding: 30px;
}

.detail-body p {
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.detail-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05em;
}

.detail-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2em;
}

.detail-description {
    font-size: 1em !important;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 15px 0;
}

.detail-tag-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.detail-tag {
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    color: var(--text-secondary);
}

.detail-note {
    background: #fffaf0;
    border-left: 4px solid #ed8936;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin-top: 20px;
    font-size: 0.95em !important;
}

/* ============================================
   CATEGORY BADGES
============================================ */
.category-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.category-badge {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge.merit {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
}

.category-badge.government {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
}

.category-badge.international {
    background: linear-gradient(135deg, #9f7aea, #805ad5);
    color: white;
}

.category-badge.development {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    color: white;
}

/* ============================================
   MAJORS GRID
============================================ */
.majors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.major-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.major-item:hover {
    background: #667eea;
    color: white;
    transform: translateX(5px);
}

.major-emoji {
    font-size: 1.5em;
}

/* ============================================
   DEGREE LEVELS
============================================ */
.degree-levels {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.degree-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.degree-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.degree-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    flex-shrink: 0;
}

.degree-info h4 {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.degree-info p {
    font-size: 0.95em;
    color: var(--text-light);
    margin-bottom: 10px;
}

.degree-funding {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 700;
}

/* ============================================
   LOCATION SECTION
============================================ */
.location-section {
    margin: 25px 0;
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.location-section h4 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.location-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-secondary);
}

.location-list li::before {
    content: '📍';
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

/* ============================================
   TIMELINE
============================================ */
.timeline {
    position: relative;
    padding-left: 50px;
    margin: 30px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea, #764ba2);
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
}

.timeline-dot {
    position: absolute;
    left: -37px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: white;
    border: 4px solid #667eea;
    border-radius: 50%;
}

.timeline-item.active .timeline-dot {
    background: #667eea;
    box-shadow: 0 0 0 5px rgba(102, 126, 234, 0.2);
}

.timeline-content h4 {
    font-size: 1.2em;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 1em;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.timeline-detail {
    font-size: 0.9em !important;
    color: var(--text-light) !important;
}

/* ============================================
   COVERAGE GRID
============================================ */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.coverage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.coverage-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.coverage-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.coverage-content h4 {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.coverage-amount {
    display: block;
    font-size: 1.3em;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 8px;
}

.coverage-detail {
    font-size: 0.9em;
    color: var(--text-light);
}

.total-value-box {
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid #667eea;
}

.total-value-box h4 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.total-amount {
    font-size: 3em;
    font-weight: 900;
    color: #667eea;
    margin: 15px 0;
}

.total-detail {
    font-size: 1em;
    color: var(--text-secondary);
}

/* ============================================
   REQUIREMENTS SECTION
============================================ */
.requirements-section {
    margin: 30px 0;
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.requirements-section h4 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.requirements-list li {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.requirements-list li:last-child {
    border-bottom: none;
}

.req-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8em;
}

.req-content {
    flex: 1;
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--text-secondary);
}

.req-content strong {
    color: var(--text-primary);
}

.warning-box-inline {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #fff5f5;
    border-left: 4px solid #fc8181;
    border-radius: var(--radius-md);
    margin-top: 20px;
}

.warning-icon-inline {
    font-size: 1.5em;
    flex-shrink: 0;
}

.warning-box-inline p {
    margin: 0;
    color: #c53030;
}

/* ============================================
   DEADLINE CARD
============================================ */
.deadline-main {
    margin-bottom: 30px;
}

.deadline-date {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.calendar-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.calendar-month {
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
}

.calendar-day {
    font-size: 2.5em;
    font-weight: 900;
    line-height: 1;
    margin: 5px 0;
}

.calendar-year {
    font-size: 0.9em;
    opacity: 0.9;
}

.deadline-info h4 {
    font-size: 1.5em;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.deadline-time {
    font-size: 1.2em;
    font-weight: 700;
    color: #e53e3e;
    margin-bottom: 5px;
}

.deadline-note {
    font-size: 0.95em;
    color: var(--text-light);
}

.countdown-box {
    padding: 30px;
    background: linear-gradient(135deg, #fc818105, #e53e3e05);
    border-radius: var(--radius-lg);
    border: 2px solid #fc8181;
    margin-bottom: 30px;
}

.countdown-box h4 {
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 3em;
    font-weight: 900;
    color: #e53e3e;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-top: 8px;
}

.countdown-message {
    text-align: center;
    font-size: 1.05em;
    color: var(--text-secondary);
    font-weight: 600;
}

.deadline-tips {
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.deadline-tips h4 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.deadline-list {
    list-style: none;
    padding: 0;
}

.deadline-list li {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 1.05em;
}

.deadline-list li strong {
    color: var(--text-primary);
}

/* ============================================
   APPLICATION STEPS
============================================ */
.application-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.step {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.step-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.step-link:hover {
    gap: 12px;
}

/* ============================================
   TIPS CONTAINER
============================================ */
.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tip-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tip-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.tip-icon {
    font-size: 2.5em;
    flex-shrink: 0;
}

.tip-content h4 {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.tip-content p {
    font-size: 0.95em;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   CONTACT GRID
============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.contact-card {
    padding: 30px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.contact-card h4 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.contact-card p {
    font-size: 0.95em;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.contact-link {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* ============================================
   SIDEBAR
============================================ */
.sidebar-column {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

.sidebar-card h3,
.sidebar-card h4 {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.cta-card {
    background: var(--primary-gradient);
    color: white;
    text-align: center;
}

.cta-card h3 {
    color: white;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.05em;
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-note {
    font-size: 0.9em;
    margin-top: 15px;
    opacity: 0.9;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.telegram {
    background: #0088cc;
    color: white;
}

.share-btn.copy {
    background: var(--bg-light);
    color: var(--text-secondary);
}

.share-btn:hover {
    transform: translateX(3px);
}

/* Related List */
.related-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
}

.related-item:hover {
    background: #667eea;
    color: white;
    transform: translateX(3px);
}

.related-icon {
    font-size: 2em;
}

.related-info h5 {
    font-size: 1em;
    margin-bottom: 3px;
    color: var(--text-primary);
}

.related-item:hover .related-info h5,
.related-item:hover .related-info p {
    color: white;
}

.related-info p {
    font-size: 0.85em;
    color: var(--text-light);
    margin: 0;
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.tag:hover {
    background: #667eea;
    color: white;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1200px) {
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar-column {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .post-title {
        font-size: 2.2em;
    }
    
    .post-subtitle {
        font-size: 1.1em;
    }
    
    .featured-image img {
        height: 300px;
    }
    
    .image-overlay {
        right: 20px;
        bottom: 20px;
        padding: 20px;
    }
    
    .quick-info-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8em;
    }
    
    .majors-grid,
    .coverage-grid,
    .tips-container,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .deadline-date {
        flex-direction: column;
        text-align: center;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .step {
        flex-direction: column;
    }
}

/* ============================================
   SMOOTH SCROLLING & ANIMATIONS
============================================ */
html {
    scroll-behavior: smooth;
}

::selection {
    background: #667eea;
    color: white;
}
