/* Archive Layout */
.harmsco-press-archive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

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

/* Card Base */
.harmsco-press-card {
    background: transparent;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.harmsco-press-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

/* Thumbnail */
.harmsco-press-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 16px;
    border-radius: 4px;
}

/* Titles & Date */
.harmsco-press-card .press-title a {
    color: #1A9CE2;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: color .25s ease;
}
.harmsco-press-card:hover .press-title a {
    color: #59B046;
}

.press-date {
    font-size: 14px;
    color: #888;
    margin: 4px 0 12px;
}

/* Buttons */
.press-buttons {
    margin-top: auto;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.press-btn {
    background: #1A9CE2;
    padding: 10px 16px;
    border-radius: 9999px;
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    transition: transform .25s ease, background .25s ease;
}

.press-btn:hover {
    background: #59B046 !important;
    transform: translateY(-2px);
}

/* Single View */
.harmsco-single-press {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.single-title {
    font-size: 32px;
    font-weight: 700;
    color: #1A9CE2;
    text-align: center;
}

.single-date {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
}

.single-thumb img {
    display: block;
    max-width: 100%;
    margin: 0 auto 20px;
    border-radius: 4px;
}

.single-buttons {
    text-align: center;
    margin-bottom: 20px;
}

.single-content {
    margin: 20px 0;
}

/* Back Link */
.back-archive {
    text-align: center;
    margin-top: 30px;
}
.back-archive a {
    color: #1A9CE2;
    font-weight: 600;
}

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