/* News Photocard Styles - NBTV Template */

.news-photocard {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    background: #003057;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Top Image Section with white border frame */
.news-photocard .photocard-image-wrapper {
    width: 100%;
    padding: 20px;
    background: #003057;
    position: relative;
}

.news-photocard .photocard-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border: 8px solid #ffffff;
    border-radius: 5px;
    max-height: 400px;
    object-fit: cover;
}

/* Content Wrapper - lower section with dotted background */
.news-photocard .photocard-content-wrapper {
    padding: 40px 30px 20px;
    background: #003057;
    position: relative;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 15px 15px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Category Badge */
.news-photocard .photocard-category-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: #ffffff;
    color: #003057;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Icon Wrapper - center top with white background */
.news-photocard .photocard-icon-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.news-photocard .photocard-icon {
    width: 80px;
    height: 80px;
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Headline - Center aligned */
.news-photocard .photocard-headline-wrapper {
    text-align: center;
    margin: 20px 0 40px 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-photocard .photocard-headline {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Bottom Bar - Date and Logo */
.news-photocard .photocard-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: auto;
    flex-wrap: wrap;
}

.news-photocard .photocard-bottom-bar:empty {
    display: none;
}

.news-photocard .photocard-date-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
}

.news-photocard .photocard-date-icon {
    font-size: 18px;
}

.news-photocard .photocard-date-text {
    font-weight: 500;
}

/* Social Icons */
.news-photocard .photocard-social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.news-photocard .social-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
}

/* Logo/Brand */
.news-photocard .photocard-logo-wrapper {
    max-width: 100px;
}

.news-photocard .photocard-brand-logo {
    max-width: 100%;
    height: auto;
    max-height: 40px;
}

.news-photocard .photocard-brand-text {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 2px;
}

/* Legacy elements - hidden in new template */
.news-photocard .photocard-image {
    display: none;
}

.news-photocard .photocard-content {
    display: none;
}

.news-photocard .photocard-title {
    display: none;
}

.news-photocard .photocard-subtitle {
    display: none;
}

.news-photocard .photocard-body {
    display: none;
}

.news-photocard .photocard-meta {
    display: none;
}

.news-photocard .photocard-footer {
    display: none;
}

.news-photocard .photocard-logo {
    display: none;
}

.news-photocard .photocard-header {
    display: none;
}

/* Template Variations */
.news-photocard-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.news-photocard-minimal {
    background: #f8f9fa;
    color: #2c3e50;
    border: 2px solid #e9ecef;
}

.news-photocard-bold {
    background: #1a1a1a;
    color: #ffffff;
    padding: 40px;
}

.news-photocard-bold .photocard-title {
    font-size: 42px;
    text-transform: uppercase;
}

/* Photocard Grid */
.news-photocards-grid {
    display: grid;
    gap: 30px;
    margin: 30px 0;
}

.news-photocards-grid.photocard-col-1 {
    grid-template-columns: 1fr;
}

.news-photocards-grid.photocard-col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.news-photocards-grid.photocard-col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.news-photocards-grid.photocard-col-4 {
    grid-template-columns: repeat(4, 1fr);
}

.photocard-grid-item {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photocard-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.photocard-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.photocard-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.photocard-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photocard-info {
    padding: 20px;
}

.photocard-grid-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.photocard-grid-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0 0 10px 0;
}

.photocard-grid-date {
    font-size: 12px;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .news-photocard {
        padding: 20px;
    }
    
    .news-photocard .photocard-title {
        font-size: 24px;
    }
    
    .news-photocard .photocard-subtitle {
        font-size: 16px;
    }
    
    .news-photocards-grid.photocard-col-3,
    .news-photocards-grid.photocard-col-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .news-photocards-grid.photocard-col-2,
    .news-photocards-grid.photocard-col-3,
    .news-photocards-grid.photocard-col-4 {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .news-photocard {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
