/* Directory Grid View */
.wphf-directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.wphf-directory-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wphf-directory-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.wphf-dir-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.wphf-dir-title a {
    color: #1a202c;
    text-decoration: none;
}

.wphf-dir-title a:hover {
    color: #3182ce;
}

.wphf-dir-count {
    font-size: 14px;
    color: #718096;
    margin-bottom: 16px;
}

.wphf-btn-view {
    display: inline-block;
    color: #3182ce;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

/* Single Font Page */
.wphf-single-container {
    width: 100%;
    margin: 20px 0;
}

.wphf-back-link {
    display: inline-block;
    margin-bottom: 15px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
}

.wphf-single-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 25px;
    border-bottom: 2px solid #edf2f7;
    padding-bottom: 12px;
}

.wphf-font-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.wphf-font-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 10px;
}

.wphf-font-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.wphf-font-ext {
    font-size: 12px;
    color: #718096;
    text-transform: uppercase;
}

.wphf-btn-download {
    background-color: #3182ce;
    color: #ffffff !important;
    padding: 6px 14px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.wphf-font-url {
    background: #f7fafc;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: #4a5568;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
}

.wphf-font-preview {
    font-size: 26px;
    line-height: 1.4;
    padding: 10px 0;
    color: #1a202c;
}