/* ===== BLOG-SPECIFIC STYLES ONLY ===== */

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumbs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #f59e0b;
}

.breadcrumbs .current {
    color: #0f172a;
    font-weight: 600;
}

/* ===== PAGE HEADER ===== */
.blog-page-header {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    text-align: center;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

/* Decorative background pattern */
.blog-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Decorative shapes */
.blog-page-header::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.blog-page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.blog-page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ===== MAIN CONTAINER ===== */
.blog-main-container {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

/* ===== BLOG POSTS SECTION ===== */
.blog-posts-section {
    width: 100%;
}

.section-title {
    font-size: 2rem;
    color: #0f172a;
    margin: 40px 0 30px 0;
    font-weight: 700;
}

/* ===== FEATURED POST ===== */
.featured-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.featured-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.2);
}

.featured-post-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post:hover .featured-post-image {
    transform: scale(1.05);
}

.featured-post-content {
    padding: 40px;
    background: linear-gradient(to bottom, white 0%, #fef9f3 100%);
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.featured-post-category {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.featured-post-title {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.featured-post-excerpt {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.featured-post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 25px;
    border-top: 2px solid #f59e0b;
    margin-bottom: 30px;
}

.featured-post-author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

.featured-post-date {
    color: #94a3b8;
    font-size: 0.95rem;
}

.btn-read-featured {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-read-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
}

/* ===== BLOG POSTS GRID ===== */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(245, 158, 11, 0.1);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b 0%, #f97316 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: linear-gradient(to bottom, white 0%, #fef9f3 100%);
}

.blog-card-category {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-category {
    transform: scale(1.05);
}

.blog-card-title {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: #f59e0b;
}

.blog-card-excerpt {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
    font-size: 0.95rem;
}

.blog-card-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid rgba(245, 158, 11, 0.2);
    margin-bottom: 20px;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-card-date {
    color: #94a3b8;
    font-size: 0.8rem;
}

.btn-read-more {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

/* ===== LOAD MORE BUTTON ===== */
.load-more-container {
    text-align: center;
    margin-top: 50px;
}

.btn-load-more {
    background: white;
    color: #f59e0b;
    border: 2px solid #f59e0b;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    border-color: transparent;
}

/* ===== SIDEBAR ===== */
.blog-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Search Widget */
.search-box {
    display: flex;
    gap: 10px;
}

.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: #f59e0b;
}

.search-box button {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s;
}

.search-box button:hover {
    transform: scale(1.05);
}

/* Categories Widget */
.category-list {
    list-style: none;
}

.category-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.category-list a {
    color: #64748b;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.category-list a:hover {
    color: #f59e0b;
}

.category-count {
    background: #f1f5f9;
    color: #64748b;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
}

/* Recent Posts Widget */
.recent-post-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    text-decoration: none;
    transition: transform 0.3s;
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-item:hover {
    transform: translateX(5px);
}

.recent-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

.recent-post-info h4 {
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-date {
    color: #94a3b8;
    font-size: 0.8rem;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.cta-widget h3 {
    color: white;
}

.cta-widget p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.btn-cta-sidebar {
    display: inline-block;
    background: white;
    color: #1e40af;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-cta-sidebar:hover {
    transform: scale(1.05);
}

/* ===== SINGLE BLOG POST PAGE ===== */
.blog-post-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.blog-post-full {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.blog-post-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
}

.blog-post-category {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-post-title {
    font-size: 2.8rem;
    color: #0f172a;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #64748b;
    font-size: 1rem;
}

.blog-post-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 40px;
}

.blog-post-content {
    color: #334155;
    font-size: 1.1rem;
    line-height: 1.9;
}

.blog-post-content h2 {
    font-size: 2rem;
    color: #0f172a;
    margin: 40px 0 20px 0;
    font-weight: 700;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.blog-post-content p {
    margin-bottom: 20px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 20px 0 20px 30px;
}

.blog-post-content li {
    margin-bottom: 10px;
}

/* Share Section */
.share-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin: 50px 0;
    text-align: center;
}

.share-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #0f172a;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: transform 0.3s, opacity 0.3s;
}

.share-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.share-btn.whatsapp { background: #25D366; }
.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.linkedin { background: #0A66C2; }

/* Related Posts */
.related-posts-section {
    margin-top: 60px;
}

.related-posts-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #0f172a;
    font-weight: 700;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-decoration: none;
    transition: transform 0.3s;
}

.related-post-card:hover {
    transform: translateY(-5px);
}

.related-post-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post-content {
    padding: 20px;
}

.related-post-title {
    font-size: 1.1rem;
    color: #0f172a;
    font-weight: 600;
    line-height: 1.4;
}

/* ===== ADMIN PANEL STYLES ===== */
/* Login Screen */
.login-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-box {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 450px;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header i {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 20px;
}

.login-header h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.login-header p {
    color: #64748b;
}

.login-box .form-group {
    margin-bottom: 25px;
}

.login-box input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.login-box input:focus {
    outline: none;
    border-color: #667eea;
}

.btn-login {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-login:hover {
    transform: translateY(-2px);
}

.login-hint {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Admin Dashboard */
.admin-dashboard {
    min-height: 100vh;
    background: #f1f5f9;
}

.admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.admin-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.btn-logout {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-logout:hover {
    background: white;
    color: #667eea;
}

/* Admin Content */
.admin-content {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 40px;
}

.admin-actions {
    margin-bottom: 30px;
}

.btn-add-new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-add-new:hover {
    transform: translateY(-2px);
}

/* Posts Table */
.posts-table-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.posts-table-container h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #0f172a;
}

.posts-table {
    width: 100%;
    border-collapse: collapse;
}

.posts-table thead {
    background: #f8f9fa;
}

.posts-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #0f172a;
    border-bottom: 2px solid #e2e8f0;
}

.posts-table td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
}

.posts-table tr:hover {
    background: #f8f9fa;
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.published {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.draft {
    background: #fef3c7;
    color: #92400e;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.btn-edit, .btn-delete {
    padding: 8px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-edit {
    background: #dbeafe;
    color: #1e40af;
}

.btn-delete {
    background: #fee2e2;
    color: #991b1b;
}

.btn-edit:hover, .btn-delete:hover {
    transform: scale(1.05);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    overflow-y: auto;
    padding: 40px 20px;
}

.modal-content {
    background: white;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 2px solid #e2e8f0;
}

.modal-header h2 {
    font-size: 1.8rem;
    color: #0f172a;
}

.btn-close {
    background: #fee2e2;
    color: #991b1b;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.btn-close:hover {
    transform: rotate(90deg);
}

#postForm {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0f172a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-size: 0.85rem;
}

/* Rich Text Editor */
.editor-toolbar {
    display: flex;
    gap: 5px;
    background: #f8f9fa;
    padding: 10px;
    border: 2px solid #e2e8f0;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}

.editor-toolbar button {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.editor-toolbar button:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.content-editor {
    min-height: 400px;
    padding: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 0 0 10px 10px;
    font-size: 1rem;
    line-height: 1.8;
}

.content-editor:focus {
    outline: none;
    border-color: #667eea;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.btn-cancel {
    background: #f1f5f9;
    color: #64748b;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel:hover {
    background: #e2e8f0;
}

.btn-save {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-save:hover {
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .blog-main-container {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-page-header h1 {
        font-size: 2rem;
    }
    
    .featured-post-title {
        font-size: 1.8rem;
    }
    
    .blog-post-title {
        font-size: 2rem;
    }
    
    .blog-post-full {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        flex-direction: column;
    }
}