body {
    font-family: 'Roboto', sans-serif;
    background: #f4f4f4;
/*    padding: 20px;*/
}

.container-80 {
    width: 80%;
    margin: auto;
    margin-bottom: 80px;
    font-family: 'Roboto', sans-serif;
}

.admin-tile {
    height: 120px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,.15);
    font-size: 22px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.admin-section {
    display: none;
    margin-top: 30px;
}

/* ===== BLOG GRID ===== */
:root {
    --nav-height: 70px;
}

.title-band {
    height: 200px;
    background: #80a0b7;
    margin-bottom: 80px;
    margin-top: var(--nav-height);

    display: flex;
    align-items: center;
    justify-content: center;
}

.title-content {
    display: flex;
    flex-direction: column;   /* 👈 this is the key */
    align-items: center;
}

.title-band h1 {
    margin: 0;
    color: white;
    font-family: 'Roboto', sans-serif;
}

.title-band span {
    color: #ccc;
    margin-top: 8px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}


.page-title {
    color: white;             /* optional, but usually needed */
    margin: 0;                /* important: remove default h1 margins */
}


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

.blog-tile {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background: #d9dbdb;
}

.blog-tile img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 7.5px;
    margin-bottom: -20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tile-content {
    padding: 25px;
    background: #d9dbdb;
    font-family: 'Roboto', sans-serif;
}

.tile-content h2 {
    font-size: 18px;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
}

.tile-content small {
    color: #777;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
}

.tile-content p {
    margin: 10px 0;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.read-more-wrap {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more,
.arr {
    color: #ea0a80;
    font-weight: bold;
    transition: color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.arr {
    font-size: 12px;
}

.read-more-wrap:hover {
    text-decoration: none !important;
}

/* Hover on either → both change */
.read-more-wrap:hover .read-more,
.read-more-wrap:hover .arr {
    color: #aa1a10;
}

.read-more-wrap:hover .arr {
    transform: translateX(4px);
}

/* ===== FULL BLOG PAGE ===== */
.blog-container {
    max-width: 900px;
    background: white;
    margin: auto;
    padding: 30px;
}

.meta {
    color: #777;
    margin-bottom: 20px;
}

.blog-image {
    width: 300px;
    float: right;
    margin: 0 0 20px 20px;
    border-radius: 6px;
}

.blog-text {
    line-height: 1.8;
    text-align: justify;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-image {
        float: none;
        width: 100%;
        margin: 20px 0;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

footer {
    font-family: 'Roboto', sans-serif;
}
