/* ===== BLOGG PAGE ===== */

.blogg-hero {
    max-width: 860px;
    margin: 48px auto 0 auto;
    padding: 80px 20px 0;
}

.blogg-hero-label {
    font-weight: 700;
    letter-spacing: 2px;
    color: #012a9e;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}

.blogg-hero h1 {
    font-size: 2rem;
    color: #111;
    margin: 0 0 8px 0;
}

.blogg-hero .post-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    margin-bottom: 32px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.blogg-article {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #012a9e;
    color: white;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 64px;
    transition: background 0.2s;
}

.read-more-btn:hover { background: #001f7a; }

/* ===== BLOGG CATALOG ===== */
.blogg-catalog {
    background: #f4f6fb;
    padding: 48px 20px;
}

.blogg-catalog h2 {
    max-width: 860px;
    margin: 0 auto 28px auto;
    font-size: 1.4rem;
    color: #111;
}

.catalog-grid {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.catalog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.catalog-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.catalog-thumb-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 2rem;
}

.catalog-info {
    padding: 14px 16px;
}

.catalog-info h3 {
    margin: 0 0 6px 0;
    font-size: 1rem;
    color: #111;
}

.catalog-info span {
    font-size: 0.82rem;
    color: #888;
}

.divider {
    max-width: 860px;
    margin: 0 auto 40px auto;
    border: none;
    border-top: 2px solid #eee;
}

/* ===== BLOGG POST ===== */
.post-wrapper {
    max-width: 860px;
    margin: 48px auto 0 auto;
    padding: 80px 20px 40px;
}

.back-btn {
    display: inline-block;
    margin-bottom: 24px;
    color: #012a9e;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(1, 42, 158, 0.08);
    transition: background 0.2s, transform 0.2s;
}

.back-btn:hover {
    background: rgba(1, 42, 158, 0.16);
    transform: translateY(-2px);
}

.post-label {
    font-weight: 700;
    letter-spacing: 2px;
    color: #012a9e;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: center;
}

.post-wrapper h1 {
    font-size: 2rem;
    color: #111;
    margin: 0 0 8px 0;
}

.post-article {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 32px;
}

.post-photos {
    margin-top: 40px;
}

.post-photos h2 {
    margin-bottom: 16px;
    font-size: 1.5rem;
    color: #111;
}

.photo-grid-post {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.photo-grid-post img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
