.ap-container {
--ap-primary: #0d9488;
--ap-card-bg: #1e293b;
--ap-text: #ffffff;
--ap-text-muted: #94a3b8;
--ap-border-radius: 12px;
--ap-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
--ap-transition: all 0.3s ease;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.ap-no-agenda {
text-align: center;
padding: 40px;
color: #666;
font-size: 15px;
} .ap-grid {
display: grid;
gap: 24px;
}
.ap-grid-2 {
grid-template-columns: repeat(2, 1fr);
}
.ap-grid-3 {
grid-template-columns: repeat(3, 1fr);
}
.ap-grid-4 {
grid-template-columns: repeat(4, 1fr);
} .ap-card {
position: relative;
border-radius: var(--ap-border-radius);
overflow: hidden;
background: var(--ap-card-bg);
box-shadow: var(--ap-shadow);
transition: var(--ap-transition);
display: flex;
flex-direction: column;
}
.ap-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
} .ap-card-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-size: cover;
background-position: center;
background-color: var(--ap-card-bg);
transition: transform 0.5s ease;
}
.ap-card:hover .ap-card-bg {
transform: scale(1.05);
}
.ap-card-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(
to bottom,
rgba(0, 0, 0, 0.1) 0%,
rgba(0, 0, 0, 0.3) 40%,
rgba(0, 0, 0, 0.85) 100%
);
} .ap-card-content {
position: relative;
z-index: 2;
padding: 24px;
display: flex;
flex-direction: column;
justify-content: flex-end;
min-height: 320px;
color: var(--ap-text);
} .ap-card-kategori {
display: inline-block;
background: var(--ap-primary);
color: #ffffff;
font-size: 11px;
font-weight: 700;
padding: 4px 12px;
border-radius: 20px;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 12px;
width: fit-content;
box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
} .ap-card-subtitle-top {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--ap-primary);
margin-bottom: 8px;
font-weight: 600;
} .ap-card-title {
font-size: 20px;
font-weight: 700;
margin: 0 0 8px 0;
line-height: 1.3;
color: var(--ap-text);
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
} .ap-card-subtitle {
font-size: 14px;
color: var(--ap-text-muted);
margin-bottom: 12px;
} .ap-card-pemateri {
display: flex;
align-items: center;
gap: 6px;
font-size: 13px;
color: var(--ap-text-muted);
margin-bottom: 6px;
}
.ap-card-pemateri .ap-icon {
flex-shrink: 0;
opacity: 0.7;
} .ap-card-tanggal {
display: flex;
align-items: center;
gap: 6px;
font-size: 13px;
color: var(--ap-text-muted);
margin-bottom: 6px;
}
.ap-card-tanggal .ap-icon {
flex-shrink: 0;
opacity: 0.7;
} .ap-card-body {
font-size: 13px;
color: var(--ap-text-muted);
margin-top: 10px;
padding-top: 10px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
line-height: 1.5;
} .ap-card-date-badge {
position: absolute;
top: 16px;
right: 16px;
background: var(--ap-primary);
color: #ffffff;
padding: 10px 14px;
border-radius: 8px;
text-align: center;
z-index: 3;
box-shadow: 0 4px 12px rgba(13, 148, 136, 0.4);
min-width: 60px;
}
.ap-date-day {
display: block;
font-size: 24px;
font-weight: 800;
line-height: 1;
}
.ap-date-month {
display: block;
font-size: 11px;
font-weight: 500;
opacity: 0.9;
margin-top: 2px;
}
.ap-date-time {
display: block;
font-size: 10px;
opacity: 0.8;
margin-top: 4px;
padding-top: 4px;
border-top: 1px solid rgba(255, 255, 255, 0.3);
} .ap-layout-single {
max-width: 500px;
}
.ap-layout-single .ap-card-content {
min-height: 280px;
} .ap-card-list {
flex-direction: row;
}
.ap-card-list .ap-card-bg {
width: 200px;
position: relative;
}
.ap-card-list .ap-card-overlay {
background: linear-gradient(
to right,
rgba(0, 0, 0, 0.1) 0%,
rgba(0, 0, 0, 0.85) 100%
);
}
.ap-card-list .ap-card-content {
min-height: auto;
flex: 1;
}
.ap-card-body-full {
font-size: 14px;
color: var(--ap-text-muted);
margin-top: 10px;
line-height: 1.6;
} @media screen and (max-width: 1024px) {
.ap-grid-4 {
grid-template-columns: repeat(2, 1fr);
}
}
@media screen and (max-width: 768px) {
.ap-grid-3,
.ap-grid-4 {
grid-template-columns: repeat(2, 1fr);
}
.ap-card-content {
min-height: 260px;
padding: 16px;
}
.ap-card-title {
font-size: 17px;
}
}
@media screen and (max-width: 480px) {
.ap-grid-2,
.ap-grid-3,
.ap-grid-4 {
grid-template-columns: 1fr;
}
.ap-container {
padding: 12px;
}
.ap-card-list {
flex-direction: column;
}
.ap-card-list .ap-card-bg {
width: 100%;
height: 200px;
}
}