msos/css/pages/_blog.css

212 lines
6.5 KiB
CSS

/* ==========================================================================
Blog page — featured strip, topic filters, masonry card wall
========================================================================== */
.blog-page { font-family: 'Inter', sans-serif; }
/* Topic colours */
.blog-page {
--t-student-life: #2D738C;
--t-study-tips: #E8833A;
--t-slovenia: #3B82C4;
--t-community: #7C5CBF;
--t-guides: #2E9E6B;
}
/* Hero */
.blog-hero {
background: linear-gradient(180deg, #FFF7F2 0%, #FFFFFF 100%);
padding: 112px 24px 40px; /* clears the fixed 80px header */
text-align: center;
}
.blog-eyebrow {
display: inline-block;
color: #E8833A;
font-weight: 700;
font-size: 14px;
letter-spacing: 0.06em;
text-transform: uppercase;
margin-bottom: 12px;
}
.blog-hero h1 { max-width: 760px; margin: 0 auto 16px; font-size: 42px; line-height: 1.12; color: #101828; }
.blog-lead { max-width: 640px; margin: 0 auto; font-size: 18px; line-height: 28px; color: #475467; }
/* Shared tag pill */
.blog-tag {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 12px;
font-weight: 600;
letter-spacing: 0.02em;
padding: 4px 10px;
border-radius: 999px;
color: #fff;
background: #667085;
width: max-content;
}
.blog-tag i { font-size: 11px; }
.blog-tag--student-life { background: var(--t-student-life); }
.blog-tag--study-tips { background: var(--t-study-tips); }
.blog-tag--slovenia { background: var(--t-slovenia); }
.blog-tag--community { background: var(--t-community); }
.blog-tag--guides { background: var(--t-guides); }
.blog-soon {
display: inline-block;
font-size: 12px;
font-weight: 600;
color: #98A2B3;
border: 1px dashed #D0D5DD;
border-radius: 999px;
padding: 3px 10px;
}
/* Published-post meta (read time) — replaces the "Coming soon" pill on live cards */
.blog-read-time {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 13px;
font-weight: 600;
color: #2D738C;
}
.blog-read-time i { font-size: 12px; }
.blog-section-label {
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: #98A2B3;
margin: 0 0 16px;
}
/* Featured strip: one large + two stacked */
.blog-featured { max-width: 1120px; margin: 8px auto 8px; padding: 0 24px; }
.blog-featured-grid {
display: grid;
grid-template-columns: 1.4fr 1fr;
gap: 20px;
}
.blog-feat-side { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }
.blog-feat {
display: flex;
flex-direction: column;
border-radius: 18px;
overflow: hidden;
background: #FFFFFF;
border: 1px solid #EAECF0;
box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
text-decoration: none;
transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.blog-feat:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(16, 24, 40, 0.10); }
.blog-feat-thumb {
background: linear-gradient(135deg, #F2F4F7 0%, #E4E7EC 100%);
display: flex;
align-items: center;
justify-content: center;
color: #B7BDC7;
font-size: 40px;
min-height: 120px;
}
.blog-feat--lg .blog-feat-thumb { min-height: 280px; font-size: 64px; }
/* Real cover image inside a featured card thumb (replaces the icon placeholder) */
.blog-feat-thumb--image { position: relative; padding: 0; }
.blog-feat-thumb--image img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.blog-feat-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.blog-feat--lg .blog-feat-body { padding: 28px; gap: 16px; }
.blog-feat h3 { margin: 0; font-size: 18px; line-height: 1.3; color: #101828; }
.blog-feat--lg h3 { font-size: 26px; }
/* Filters */
.blog-list { max-width: 1120px; margin: 48px auto 72px; padding: 0 24px; }
.blog-filters {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 28px;
padding-bottom: 24px;
border-bottom: 1px solid #EAECF0;
}
.blog-chip {
display: inline-flex;
align-items: center;
gap: 7px;
font-family: inherit;
font-size: 14px;
font-weight: 600;
color: #475467;
background: #F2F4F7;
border: 1px solid transparent;
border-radius: 999px;
padding: 9px 16px;
cursor: pointer;
transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.blog-chip i { font-size: 12px; }
.blog-chip:hover { background: #E4E7EC; }
.blog-chip.is-active { background: #101828; color: #FFFFFF; }
/* Masonry card wall (CSS columns) */
.blog-grid { columns: 3 300px; column-gap: 20px; }
.blog-card {
break-inside: avoid;
display: inline-block;
width: 100%;
margin: 0 0 20px;
background: #FFFFFF;
border: 1px solid #EAECF0;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(16, 24, 40, 0.04);
transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.blog-card[hidden] { display: none; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(16, 24, 40, 0.10); }
/* Whole-card link variant for published posts */
a.blog-card { text-decoration: none; color: inherit; }
.blog-thumb {
background: linear-gradient(135deg, #F2F4F7 0%, #E4E7EC 100%);
display: flex;
align-items: center;
justify-content: center;
color: #B7BDC7;
font-size: 34px;
min-height: 140px;
}
/* Vary the placeholder heights so the wall feels playful, not uniform */
.blog-card:nth-child(3n+1) .blog-thumb { min-height: 180px; }
.blog-card:nth-child(4n+2) .blog-thumb { min-height: 120px; }
.blog-card-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.blog-card h3 { margin: 0; font-size: 18px; line-height: 1.3; color: #101828; }
.blog-card p { margin: 0; font-size: 14px; line-height: 22px; color: #667085; }
@media (max-width: 860px) {
.blog-featured-grid { grid-template-columns: 1fr; }
.blog-feat--lg .blog-feat-thumb { min-height: 200px; }
}
@media (max-width: 768px) {
.blog-hero { padding: 32px 20px 32px; } /* body offsets the fixed header on mobile */
.blog-hero h1 { font-size: 30px; }
.blog-grid { columns: 1; }
}
/* Pagination — reuses the shared .pagination look; reset button chrome.
Topic filter + client-side paging are handled by blog-filter.js. */
.blog-pagination { margin-top: 40px; }
.blog-pagination .pagination-arrow,
.blog-pagination .page-number {
background: transparent;
border: none;
font-family: inherit;
}