.fpoe-magazine {
--fpoe-blue: #005eb8;
--fpoe-blue-dark: #004a91;
--fpoe-blue-light: #e8f2fc;
--fpoe-red: #c41e3a;
--text-dark: #333333;
--text-light: #666666;
--bg-white: #ffffff;
--bg-gray: #f5f7fa;
--shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
--shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
--border-radius: 12px;
--transition: all 0.3s ease;
font-family: 'Open Sans', Arial, sans-serif;
color: var(--text-dark);
}
.fpoe-magazine * {
box-sizing: border-box;
}
.fpoe-magazine .container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.fpoe-magazine .page-title {
text-align: center;
margin-bottom: 30px;
}
.fpoe-magazine .page-title h1 {
color: var(--fpoe-blue);
font-size: 1.8rem;
margin: 0 0 10px;
}
.fpoe-magazine .page-title .subtitle {
color: var(--fpoe-red);
font-size: 1rem;
font-weight: 600;
} .fpoe-magazine .featured-pdf {
background: var(--bg-white);
border-radius: var(--border-radius);
box-shadow: var(--shadow);
overflow: hidden;
margin-bottom: 40px;
transition: var(--transition);
}
.fpoe-magazine .featured-pdf:hover {
box-shadow: var(--shadow-hover);
transform: translateY(-3px);
}
.fpoe-magazine .featured-pdf a {
text-decoration: none;
color: #ffffff;
text-align: center;
display: grid;
grid-template-columns: 1fr max-content;
width: max-content;
border-radius: 50px;
padding: 16px 52px;
}
.fpoe-magazine .featured-content {
display: flex;
flex-direction: column;
}
.fpoe-magazine .featured-cover {
position: relative;
width: 100%;
aspect-ratio: 210/297;
background: var(--bg-gray);
overflow: hidden;
}
.fpoe-magazine .featured-cover img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
}
.fpoe-magazine .featured-badge {
position: absolute;
top: 15px;
left: 15px;
background: var(--fpoe-red);
color: white;
padding: 8px 16px;
font-weight: 700;
font-size: 12px;
text-transform: uppercase;
border-radius: 4px;
letter-spacing: 0.5px;
z-index: 2;
}
.fpoe-magazine .featured-info {
padding: 25px;
}
.fpoe-magazine .featured-info h2 {
color: var(--fpoe-blue);
font-size: 1.5rem;
margin: 0 0 10px;
line-height: 1.3;
}
.fpoe-magazine .featured-info .date {
color: var(--fpoe-red);
font-weight: 600;
font-size: 0.9rem;
margin: 0 0 15px;
}
.fpoe-magazine .featured-info .teaser {
color: var(--text-light);
font-size: 1rem;
margin: 0 0 20px;
line-height: 1.7;
}
.fpoe-magazine .read-btn {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(--fpoe-blue);
color: white;
padding: 12px 24px;
border-radius: 6px;
font-weight: 600;
font-size: 0.95rem;
transition: var(--transition);
}
.fpoe-magazine .featured-pdf:hover .read-btn {
background: var(--fpoe-blue-dark);
}
.fpoe-magazine .read-btn svg {
width: 18px;
height: 18px;
} .fpoe-magazine .archive-header {
display: flex;
align-items: center;
margin-bottom: 25px;
gap: 15px;
}
.fpoe-magazine .archive-header h2 {
color: var(--fpoe-blue);
font-size: 1.3rem;
white-space: nowrap;
margin: 0;
}
.fpoe-magazine .archive-header::after {
content: '';
flex: 1;
height: 2px;
background: linear-gradient(to right, var(--fpoe-blue), transparent);
} .fpoe-magazine .pdf-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}
.fpoe-magazine .pdf-card {
background: var(--bg-white);
border-radius: var(--border-radius);
box-shadow: var(--shadow);
overflow: hidden;
transition: var(--transition);
}
.fpoe-magazine .pdf-card:hover {
box-shadow: var(--shadow-hover);
transform: translateY(-5px);
}
.fpoe-magazine .pdf-card a {
text-decoration: none;
display: block;
}
.fpoe-magazine .pdf-cover {
position: relative;
width: 100%;
aspect-ratio: 210/297;
background: var(--bg-gray);
overflow: hidden;
}
.fpoe-magazine .pdf-cover img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
}
.fpoe-magazine .pdf-cover .pdf-date {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0,94,184,0.95), transparent);
color: white;
padding: 30px 12px 12px;
font-size: 0.8rem;
font-weight: 600;
text-align: center;
} .fpoe-magazine .pdf-loading {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
background: var(--fpoe-blue-light);
z-index: 1;
}
.fpoe-magazine .pdf-loading::after {
content: '';
width: 40px;
height: 40px;
border: 3px solid var(--fpoe-blue-light);
border-top-color: var(--fpoe-blue);
border-radius: 50%;
animation: fpoe-ma-spin 1s linear infinite;
}
@keyframes fpoe-ma-spin {
to { transform: rotate(360deg); }
} @media (min-width: 600px) {
.fpoe-magazine .page-title h1 { font-size: 2.2rem; }
.fpoe-magazine .featured-cover {
max-height: 400px;
aspect-ratio: auto;
}
.fpoe-magazine .featured-info h2 { font-size: 1.8rem; }
.fpoe-magazine .pdf-grid {
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
}
@media (min-width: 900px) {
.fpoe-magazine .container { padding: 40px; }
.fpoe-magazine .page-title h1 { font-size: 2.5rem; }
.fpoe-magazine .featured-content { flex-direction: row; }
.fpoe-magazine .featured-cover {
width: 40%;
min-width: 300px;
max-height: none;
aspect-ratio: 210/297;
}
.fpoe-magazine .featured-info {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
padding: 40px;
}
.fpoe-magazine .featured-info h2 { font-size: 2rem; }
.fpoe-magazine .featured-info .teaser { font-size: 1.1rem; }
.fpoe-magazine .pdf-grid {
grid-template-columns: repeat(4, 1fr);
gap: 25px;
}
}
@media (min-width: 1200px) {
.fpoe-magazine .pdf-grid {
grid-template-columns: repeat(5, 1fr);
}
} .fpoe-magazine .fpoe-ma-cover-placeholder {
width: 100%;
height: 100%;
background: var(--fpoe-blue-light);
display: flex;
align-items: center;
justify-content: center;
}
.fpoe-magazine .fpoe-ma-cover-placeholder span {
background: var(--fpoe-blue);
color: #fff;
font-weight: 700;
font-size: 14px;
padding: 6px 10px;
border-radius: 4px;
letter-spacing: 0.5px;
}