.bw-blog-hero {
background: var(--bw-primary);
padding: 64px 0 56px;
position: relative;
overflow: hidden;
}
.bw-blog-hero::after {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 55% 70% at 90% 40%, rgba(25,169,230,0.10) 0%, transparent 65%);
pointer-events: none;
}
.bw-blog-hero-inner {
position: relative;
z-index: 1;
}
.bw-blog-hero-label {
display: inline-block;
background: rgba(25,169,230,0.15);
border: 1px solid rgba(25,169,230,0.35);
color: var(--bw-accent);
font-size: 12px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
padding: 5px 14px;
border-radius: 20px;
margin-bottom: 20px;
}
.bw-blog-hero h1 {
color: #fff;
font-size: clamp(28px, 4vw, 42px);
font-weight: 700;
margin: 0 0 16px;
line-height: 1.15;
}
.bw-blog-hero p {
color: rgba(255,255,255,0.70);
font-size: 17px;
max-width: 540px;
margin: 0;
line-height: 1.65;
} .bw-blog-filters {
background: var(--bw-white);
border-bottom: 1px solid var(--bw-border);
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2px 12px rgba(12,60,96,0.06);
}
.bw-blog-filters-inner {
display: flex;
overflow-x: auto;
scrollbar-width: none;
-ms-overflow-style: none;
}
.bw-blog-filters-inner::-webkit-scrollbar {
display: none;
}
.bw-filter-btn {
display: inline-block;
padding: 16px 20px;
font-size: 14px;
font-weight: 500;
color: var(--bw-text-body);
text-decoration: none;
border-bottom: 2px solid transparent;
white-space: nowrap;
transition: color 0.2s ease, border-color 0.2s ease;
font-family: var(--font-main);
background: none;
border-top: none;
border-left: none;
border-right: none;
cursor: pointer;
}
.bw-filter-btn:hover {
color: var(--bw-primary);
border-bottom-color: rgba(25,169,230,0.4);
}
.bw-filter-btn.active {
color: var(--bw-primary);
font-weight: 700;
border-bottom-color: var(--bw-accent);
} .bw-blog-section {
background: var(--bw-bg-light);
padding: 52px 0 80px;
}
.bw-posts-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
} .bw-post-card {
background: var(--bw-white);
border: 1px solid var(--bw-border);
border-radius: 16px;
overflow: hidden;
display: flex;
flex-direction: column;
text-decoration: none;
color: inherit;
transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.bw-post-card:hover {
transform: translateY(-4px);
box-shadow: 0 16px 40px rgba(12,60,96,0.11);
border-color: rgba(25,169,230,0.30);
} .bw-post-card.is-featured {
grid-column: 1 / -1;
flex-direction: row;
max-height: 320px;
}
.bw-post-card.is-featured .bw-card-image {
width: 44%;
min-width: 44%;
aspect-ratio: unset;
}
.bw-post-card.is-featured .bw-card-body {
padding: 32px 36px 28px;
}
.bw-post-card.is-featured .bw-card-title {
font-size: 21px;
}
.bw-post-card.is-featured .bw-card-excerpt {
-webkit-line-clamp: 4;
} .bw-card-image {
aspect-ratio: 16 / 9;
overflow: hidden;
background: var(--bw-primary);
flex-shrink: 0;
}
.bw-card-image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.4s ease;
}
.bw-post-card:hover .bw-card-image img {
transform: scale(1.04);
}
.bw-card-image-placeholder {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--bw-primary) 0%, #0a2d4a 100%);
}
.bw-card-image-placeholder svg {
opacity: 0.15;
width: 48px;
height: 48px;
} .bw-card-body {
padding: 22px 24px 18px;
flex: 1;
display: flex;
flex-direction: column;
}
.bw-card-meta {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 12px;
flex-wrap: wrap;
}
.bw-card-category {
display: inline-block;
background: #E4F4FC;
color: #0d7ab5;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.07em;
text-transform: uppercase;
padding: 3px 10px;
border-radius: 20px;
}
.bw-card-readtime {
font-size: 12px;
color: var(--bw-text-body);
display: flex;
align-items: center;
gap: 4px;
}
.bw-card-readtime svg {
width: 13px;
height: 13px;
opacity: 0.55;
flex-shrink: 0;
}
.bw-card-title {
font-size: 16px;
font-weight: 700;
color: var(--bw-primary);
line-height: 1.35;
margin: 0 0 10px;
flex: 1;
}
.bw-card-excerpt {
font-size: 14px;
color: var(--bw-text-body);
line-height: 1.65;
margin: 0;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
} .bw-card-footer {
padding: 14px 24px;
border-top: 1px solid var(--bw-border);
display: flex;
align-items: center;
justify-content: space-between;
}
.bw-card-date {
font-size: 12px;
color: var(--bw-text-body);
opacity: 0.70;
}
.bw-card-arrow {
width: 30px;
height: 30px;
border-radius: 50%;
background: var(--bw-bg-light);
border: 1px solid var(--bw-border);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: background 0.2s ease, border-color 0.2s ease;
}
.bw-post-card:hover .bw-card-arrow {
background: var(--bw-accent);
border-color: var(--bw-accent);
}
.bw-card-arrow svg {
width: 13px;
height: 13px;
color: var(--bw-text-body);
transition: color 0.2s ease;
}
.bw-post-card:hover .bw-card-arrow svg {
color: #fff;
} .bw-no-posts {
grid-column: 1 / -1;
text-align: center;
padding: 64px 24px;
color: var(--bw-text-body);
} .bw-pagination {
display: flex;
justify-content: center;
gap: 8px;
margin-top: 48px;
flex-wrap: wrap;
}
.bw-pagination .page-numbers {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 40px;
height: 40px;
padding: 0 14px;
border-radius: 8px;
border: 1px solid var(--bw-border);
background: var(--bw-white);
color: var(--bw-primary);
font-size: 14px;
font-weight: 500;
text-decoration: none;
transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.bw-pagination .page-numbers:hover {
border-color: var(--bw-accent);
color: var(--bw-accent);
}
.bw-pagination .page-numbers.current {
background: var(--bw-primary);
border-color: var(--bw-primary);
color: #fff;
} .bw-single-wrap {
background: var(--bw-bg-light);
}
.bw-post-header {
background: var(--bw-primary);
padding: 56px 0 52px;
position: relative;
overflow: hidden;
}
.bw-post-header::after {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 50% 80% at 85% 30%, rgba(25,169,230,0.10) 0%, transparent 60%);
pointer-events: none;
}
.bw-post-header-inner {
position: relative;
z-index: 1;
max-width: 780px;
}
.bw-post-back-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: rgba(255,255,255,0.55);
font-size: 13px;
text-decoration: none;
margin-bottom: 28px;
transition: color 0.2s ease;
}
.bw-post-back-link:hover {
color: #fff;
}
.bw-post-back-link svg {
width: 15px;
height: 15px;
flex-shrink: 0;
}
.bw-post-header-meta {
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 20px;
flex-wrap: wrap;
}
.bw-post-category-badge {
display: inline-block;
background: rgba(25,169,230,0.18);
border: 1px solid rgba(25,169,230,0.38);
color: #7dd8f8;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.10em;
text-transform: uppercase;
padding: 4px 12px;
border-radius: 20px;
text-decoration: none;
transition: background 0.2s ease, color 0.2s ease;
}
.bw-post-category-badge:hover {
background: rgba(25,169,230,0.32);
color: #fff;
}
.bw-post-readtime {
color: rgba(255,255,255,0.50);
font-size: 13px;
display: flex;
align-items: center;
gap: 5px;
}
.bw-post-readtime svg {
width: 13px;
height: 13px;
flex-shrink: 0;
}
.bw-post-header h1 {
color: #fff;
font-size: clamp(22px, 3.5vw, 38px);
font-weight: 700;
line-height: 1.2;
margin: 0 0 18px;
}
.bw-post-header-date {
color: rgba(255,255,255,0.45);
font-size: 13px;
margin: 0;
} .bw-post-featured-image {
background: var(--bw-primary);
overflow: hidden;
}
.bw-post-featured-image img {
width: 100%;
max-height: 600px;
object-fit: cover;
display: block;
} .bw-post-layout {
padding: 48px 0 80px;
}
.bw-post-layout-inner {
display: grid;
grid-template-columns: 1fr 288px;
gap: 40px;
align-items: start;
} .bw-post-content-wrap {
background: var(--bw-white);
border: 1px solid var(--bw-border);
border-radius: 20px;
padding: clamp(28px, 5vw, 48px);
}
.bw-post-body {
color: var(--bw-text-body);
font-size: 17px;
line-height: 1.75;
}
.bw-post-body h2 {
font-size: 21px;
font-weight: 700;
color: var(--bw-primary);
margin: 40px 0 14px;
padding-bottom: 10px;
border-bottom: 2px solid var(--bw-border);
}
.bw-post-body h3 {
font-size: 18px;
font-weight: 700;
color: var(--bw-primary);
margin: 30px 0 12px;
}
.bw-post-body p {
margin: 0 0 20px;
}
.bw-post-body ul,
.bw-post-body ol {
padding-left: 22px;
margin: 0 0 20px;
}
.bw-post-body li {
margin-bottom: 8px;
padding-left: 4px;
}
.bw-post-body ul li::marker {
color: var(--bw-accent);
}
.bw-post-body strong {
color: var(--bw-primary);
font-weight: 600;
}
.bw-post-body a {
color: var(--bw-accent);
text-decoration: underline;
text-underline-offset: 3px;
}
.bw-post-body blockquote {
margin: 28px 0;
padding: 18px 24px;
background: var(--bw-bg-light);
border-left: 3px solid var(--bw-accent);
border-radius: 0 8px 8px 0;
font-style: italic;
color: var(--bw-primary);
}
.bw-post-body img {
max-width: 100%;
border-radius: 10px;
margin: 8px 0 20px;
height: auto;
} .bw-post-tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 32px;
padding-top: 24px;
border-top: 1px solid var(--bw-border);
}
.bw-post-tags a {
display: inline-block;
background: var(--bw-bg-light);
border: 1px solid var(--bw-border);
color: var(--bw-text-body);
font-size: 12px;
font-weight: 500;
padding: 4px 12px;
border-radius: 20px;
text-decoration: none;
transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.bw-post-tags a:hover {
background: #E4F4FC;
border-color: rgba(25,169,230,0.35);
color: var(--bw-primary);
} .bw-post-cta {
margin-top: 44px;
background: var(--bw-primary);
border-radius: 16px;
padding: 36px 40px;
position: relative;
overflow: hidden;
}
.bw-post-cta::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(25,169,230,0.14) 0%, transparent 60%);
pointer-events: none;
}
.bw-post-cta-inner {
position: relative;
z-index: 1;
}
.bw-post-cta-label {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--bw-accent);
margin-bottom: 10px;
}
.bw-post-cta h3 {
color: #fff;
font-size: clamp(17px, 2.2vw, 21px);
margin: 0 0 12px;
line-height: 1.3;
}
.bw-post-cta p {
color: rgba(255,255,255,0.68);
font-size: 15px;
margin: 0 0 24px;
line-height: 1.65;
}
.bw-post-cta .cta {
background: var(--bw-accent);
border-color: var(--bw-accent);
color: #fff;
}
.bw-post-cta .cta:hover {
background: #fff;
border-color: #fff;
color: var(--bw-primary);
} .bw-post-sidebar {
display: flex;
flex-direction: column;
gap: 20px;
position: sticky;
top: 24px;
}
.bw-sidebar-card {
background: var(--bw-white);
border: 1px solid var(--bw-border);
border-radius: 16px;
padding: 22px;
}
.bw-sidebar-card h4 {
font-size: 12px;
font-weight: 700;
color: var(--bw-primary);
margin: 0 0 14px;
text-transform: uppercase;
letter-spacing: 0.09em;
}
.bw-sidebar-card p {
font-size: 14px;
color: var(--bw-text-body);
line-height: 1.65;
margin: 0 0 16px;
}
.bw-sidebar-card .cta {
width: 100%;
justify-content: center;
font-size: 13px;
padding: 10px 16px;
} .bw-related-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 14px;
}
.bw-related-list li {
padding-bottom: 14px;
border-bottom: 1px solid var(--bw-border);
}
.bw-related-list li:last-child {
padding-bottom: 0;
border-bottom: none;
}
.bw-related-list a {
display: flex;
flex-direction: column;
gap: 3px;
text-decoration: none;
}
.bw-related-list .rel-title {
font-size: 13px;
font-weight: 600;
color: var(--bw-primary);
line-height: 1.35;
transition: color 0.2s ease;
}
.bw-related-list a:hover .rel-title {
color: var(--bw-accent);
}
.bw-related-list .rel-date {
font-size: 11px;
color: var(--bw-text-body);
opacity: 0.65;
} .bw-sidebar-card.is-dark {
background: var(--bw-primary);
border-color: var(--bw-primary);
}
.bw-sidebar-card.is-dark h4 {
color: var(--bw-accent);
}
.bw-sidebar-card.is-dark p {
color: rgba(255,255,255,0.68);
}
.bw-sidebar-card.is-dark .cta {
background: var(--bw-accent);
border-color: var(--bw-accent);
color: #fff;
}
.bw-sidebar-card.is-dark .cta:hover {
background: #fff;
border-color: #fff;
color: var(--bw-primary);
} @media (max-width: 1024px) {
.bw-post-layout-inner {
grid-template-columns: 1fr;
}
.bw-post-sidebar {
position: static;
order: -1; }
.bw-posts-grid {
grid-template-columns: repeat(2, 1fr);
}
.bw-post-card.is-featured {
grid-column: 1 / -1;
}
}
@media (max-width: 768px) {
.bw-posts-grid {
grid-template-columns: 1fr;
}
.bw-post-card.is-featured {
flex-direction: column;
max-height: unset;
grid-column: 1;
}
.bw-post-card.is-featured .bw-card-image {
width: 100%;
aspect-ratio: 16 / 9;
}
.bw-post-cta {
padding: 28px 24px;
}
.bw-blog-hero {
padding: 48px 0 40px;
}
.bw-post-header {
padding: 40px 0 36px;
}
.bw-post-layout {
padding: 32px 0 60px;
}
}