/* Facebook Album Solutions CSS */
.facebook-album-embed {
    max-width: 800px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.facebook-album-embed h3 {
    color: #1877f2;
    margin-bottom: 20px;
    text-align: center;
}

.embed-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.embed-note {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-style: italic;
}

/* Manual Album Grid */
.manual-album {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
}

.manual-album h3 {
    color: #1877f2;
    text-align: center;
    margin-bottom: 30px;
}

.manual-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.columns-2 { grid-template-columns: repeat(2, 1fr); }
.columns-3 { grid-template-columns: repeat(3, 1fr); }
.columns-4 { grid-template-columns: repeat(4, 1fr); }

.manual-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.manual-item:hover {
    transform: translateY(-5px);
}

.manual-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.manual-item p {
    padding: 15px;
    margin: 0;
    text-align: center;
    background: #f8f9fa;
    font-size: 14px;
    color: #333;
}

.manual-note {
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Album Link Style */
.facebook-album-link {
    max-width: 500px;
    margin: 30px auto;
}

.album-preview {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #1877f2;
}

.album-icon {
    font-size: 48px;
    background: #1877f2;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-info {
    flex-grow: 1;
}

.album-info h4 {
    margin: 0 0 10px 0;
    color: #1877f2;
    font-size: 18px;
}

.album-info p {
    margin: 0 0 15px 0;
    color: #666;
    line-height: 1.5;
}

.facebook-link {
    display: inline-block;
    background: #1877f2;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.facebook-link:hover {
    background: #0d64c8;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .manual-grid.columns-3,
    .manual-grid.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .album-preview {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .manual-grid.columns-2,
    .manual-grid.columns-3,
    .manual-grid.columns-4 {
        grid-template-columns: 1fr;
    }
}