.blog-header {
    color: #b08a48;
}

.blog-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.blog-image {
    width: 100%;
    max-height: 500px;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.blog-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.2;
}

.blog-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
}

.blog-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

.editor-box {
    min-height: 500px;
    max-height: 800px;
    overflow-y: auto;
    background-color: #fff;
}

.editor-box:focus {
    outline: 0;
    border-color: #b08a48;
    box-shadow: 0 0 0 0.25rem rgba(176, 138, 72, 0.25);
}