/**
 * Default Template CSS
 *
 * @package wp.plugin.svx
 * @version 1.0.0
 * @author SV Agency
 * @since 1.0.0
 *
 * Template-specific CSS for default styling
 * Loaded conditionally when default posts are present
 *
 * Usage:
 * This CSS file contains template-specific styling for the default template.
 * It should be loaded only when default posts are being displayed
 * to avoid CSS bloat on pages that don't need it.
 *
 * Dependencies:
 * - Requires svx-post.css to be loaded first for universal post styling
 *
 * CSS Class System:
 * - svx-default: Template-specific class for default styling
 *   * Contains all default-specific visual styling
 *   * Includes card layout and typography (no hover effects or rounded borders)
 *   * Married to default template's unique design requirements
 *
 * Last Updated: 2025-01-27
 */

.svx-default {
    background: #fff;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.svx-default .post-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.svx-default .post-image {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.svx-default .brand-keyline1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color-1, #007cba);
}

.svx-default .post-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.svx-default h4 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    color: #2c3e50;
}

.svx-default p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 15px 0;
    flex: 1;
}

.svx-default .p-date {
    color: var(--primary-color-1, #007cba);
    font-weight: 500;
    font-size: 0.8rem;
    margin-top: auto;
}

.svx-default a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.svx-default a:hover {
    text-decoration: none;
}
