/* aktuality-detail-projekt.css (extrahováno z aktuality.php) */

    /* Widget kontejner */
    .sidebar-project-widget {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        margin-bottom: 30px;
        transition: all 0.3s ease;
        position: sticky;
        top: 20px;
    }
    
    .sidebar-project-widget:hover {
        box-shadow: 0 8px 30px rgba(0, 174, 239, 0.15);
        transform: translateY(-2px);
    }
    
    /* Obrázek */
    .project-widget-image {
        position: relative;
        width: 100%;
        height: 180px;
        overflow: hidden;
        background: linear-gradient(135deg, #00AEEF 0%, #0099d4 100%);
    }
    
    .project-widget-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .sidebar-project-widget:hover .project-widget-image img {
        transform: scale(1.05);
    }
    
    .project-widget-overlay {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #FFFF00;
        color: #000;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Obsah */
    .project-widget-content {
        padding: 25px;
    }
    
    .project-widget-title {
        font-size: 20px;
        font-weight: 800;
        color: #1e293b;
        margin: 0 0 12px 0;
        line-height: 1.2;
    }
    
    .project-widget-description {
        font-size: 14px;
        color: #64748b;
        line-height: 1.5;
        margin: 0 0 15px 0;
    }
    
    /* Typ příspěvku */
    .project-widget-type {
        margin-bottom: 20px;
    }
    
    .donation-type {
        display: inline-block;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }
    
    .donation-type.onetime {
        background: #fef3c7;
        color: #d97706;
    }
    
    .donation-type.monthly {
        background: #dbeafe;
        color: #1e40af;
    }
    
    .donation-type.both {
        background: linear-gradient(90deg, #fef3c7 0%, #dbeafe 100%);
        color: #1e40af;
    }
    
    /* Částky */
    .project-widget-amounts {
        margin-bottom: 25px;
    }
    
    .amounts-label {
        font-size: 13px;
        font-weight: 600;
        color: #475569;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .amounts-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .amount-button {
        padding: 10px;
        background: white;
        border: 2px solid #e2e8f0;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        color: #475569;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
    }
    
    .amount-button:hover {
        border-color: #00AEEF;
        background: #f0f9ff;
        transform: translateY(-2px);
    }
    
    .amount-button.selected {
        background: #00AEEF;
        color: white;
        border-color: #00AEEF;
    }
    
    /* Akční tlačítka */
    .project-widget-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-donate-now {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: #FFFF00;
        color: #000;
        padding: 14px 20px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .btn-donate-now:hover {
        background: #00AEEF;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 174, 239, 0.3);
    }
    
    .btn-more-info {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: transparent;
        color: #00AEEF;
        padding: 10px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
    }
    
    .btn-more-info:hover {
        background: #f0f9ff;
        border-color: #00AEEF;
    }
    
    /* Responsive */
    @media (max-width: 1200px) {
        .amounts-grid {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 992px) {
        .sidebar-project-widget {
            position: relative;
            top: 0;
            margin-bottom: 40px;
        }
    }
    
    @media (max-width: 768px) {
        .project-widget-content {
            padding: 20px;
        }
        
        .project-widget-title {
            font-size: 18px;
        }
        
        .amounts-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }
        
        .amount-button {
            padding: 8px;
            font-size: 13px;
        }
    }
    
    @media (max-width: 480px) {
        .project-widget-image {
            height: 150px;
        }
        
        .project-widget-content {
            padding: 15px;
        }
        
        .project-widget-title {
            font-size: 16px;
        }
        
        .project-widget-description {
            font-size: 13px;
        }
        
        .amounts-grid {
            grid-template-columns: 1fr;
        }
        
        .btn-donate-now {
            padding: 12px;
            font-size: 14px;
        }
    }
