.cv-banner {
    background: linear-gradient(90deg,#2563eb 60%,#3498db 100%);
    color: #fff;
    border-radius: 18px;
    padding: 40px 30px 30px 30px;
    margin-bottom: 32px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
    text-align: center;
}
.cv-banner h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.cv-banner p {
    font-size: 1.2rem;
    margin-bottom: 0;
}
.cv-section-title {
    color: #2563eb;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cv-guide-card {
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.08);
    border: none;
    transition: box-shadow 0.22s, transform 0.18s;
}
.cv-guide-card:hover {
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    transform: translateY(-4px) scale(1.02);
}
.cv-sample-img {
    height: 180px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}
.btn-detail {
    margin-top: 10px;
} 
/* Blog detail page styles */
.blog-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
}
.blog-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 40px;
    margin-bottom: 30px;
}
.blog-meta {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.blog-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
}
.back-button {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    color: white;
}

/* Rich text content styles for TinyMCE output */
.blog-body {
    line-height: 1.8;
    color: #333;
    font-size: 1.1rem;
}

.blog-body h1 {
    color: #2563eb;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #e3f2fd;
}

.blog-body h2 {
    color: #1976d2;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 1.8rem 0 1rem 0;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #f5f5f5;
}

.blog-body h3 {
    color: #1565c0;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem 0;
}

.blog-body h4 {
    color: #0d47a1;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.3rem 0 0.6rem 0;
}

.blog-body p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

.blog-body strong, .blog-body b {
    color: #1976d2;
    font-weight: 600;
}

.blog-body em, .blog-body i {
    color: #666;
    font-style: italic;
}

.blog-body ul, .blog-body ol {
    margin: 1rem 0 1rem 2rem;
    padding-left: 1rem;
}

.blog-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.blog-body ul li {
    list-style-type: disc;
    color: #555;
}

.blog-body ol li {
    list-style-type: decimal;
    color: #555;
}

.blog-body blockquote {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #2563eb;
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

.blog-body a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.blog-body a:hover {
    color: #1976d2;
    border-bottom-color: #1976d2;
}

.blog-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.blog-body table th {
    background: linear-gradient(135deg, #2563eb 0%, #1976d2 100%);
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.blog-body table td {
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
    background: white;
}

.blog-body table tr:nth-child(even) td {
    background: #f8f9fa;
}

.blog-body table tr:hover td {
    background: #e3f2fd;
}

.blog-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.blog-body code {
    background: #f1f3f4;
    color: #d73a49;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.blog-body pre {
    background: #f6f8fa;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    padding: 16px;
    overflow-x: auto;
    margin: 1rem 0;
}

.blog-body pre code {
    background: none;
    color: #24292e;
    padding: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-body h1 {
        font-size: 1.8rem;
    }
    
    .blog-body h2 {
        font-size: 1.5rem;
    }
    
    .blog-body h3 {
        font-size: 1.3rem;
    }
    
    .blog-body {
        font-size: 1rem;
    }
    
    .blog-content {
        padding: 20px;
    }
} 