  .gallery-wrapper {
            width: 100%;
            font-family: Arial, sans-serif;
            margin-top: 20px;
        }
        .gallery-title-main {
            text-align: center;
            font-family: Georgia, serif;
            color: #333;
            font-size: 28px;
            margin-bottom: 5px;
            text-transform: uppercase;
        }
        .gallery-divider {
            width: 100%;
            height: 1px;
            background-color: #ddd;
            margin-bottom: 25px;
        }
        .section-tag { 
            background: #c0392b; 
            color: #fff; 
            padding: 8px 15px; 
            font-weight: bold; 
            display: inline-block; 
            font-size: 13px; 
            margin-bottom: 20px; 
            text-transform: uppercase; 
        }

        /* Responsive Flexbox layout: details on left, image on right */
        .latest-album-block { 
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 40px; 
            background: #fff;
            padding: 20px;
            border: 1px solid #eee;
        }
        .latest-info-side {
            flex: 1;
            text-align: left; /* Keeps text left-aligned */
        }
        .latest-img-side {
            flex: 1;
            text-align: center;
        }
        .latest-cover-img { 
            width: 100%; 
            max-width: 500px; 
            height: auto; 
            border: 1px solid #ddd; 
            padding: 4px; 
            box-shadow: 0 2px 5px rgba(0,0,0,0.08); 
        }

        /* Stack vertically on small mobile displays */
        @media(max-width: 768px) {
            .latest-album-block {
                flex-direction: column;
                text-align: center;
            }
            .latest-info-side {
                text-align: center;
                order: 2; /* Move text below image on mobile views */
            }
            .latest-img-side {
                order: 1;
            }
        }

        .album-heading-text { 
            font-family: Georgia, serif; 
            font-size: 24px; 
            color: #c0392b; 
            margin: 0 0 12px 0; 
            text-transform: uppercase; 
        }
        .album-meta-details { 
            font-size: 14px; 
            color: #555; 
            line-height: 1.8; 
            margin-bottom: 20px; 
        }
        .album-meta-details strong { 
            color: #222; 
        }
        
        .grid-section-title { 
            border-top: 1px solid #ddd; 
            padding-top: 20px; 
            text-align: center; 
            font-family: Georgia, serif; 
            font-size: 22px; 
            color: #333; 
            margin-bottom: 25px; 
            text-transform: uppercase; 
        }
        .albums-grid-layout { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 30px; 
        }
        @media(max-width: 768px) { 
            .albums-grid-layout { grid-template-columns: 1fr; } 
        }
        
        .album-grid-card { 
            border: 1px solid #dcdde1; 
            padding: 15px; 
            background: #fff; 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
        }
        .grid-card-img-holder { 
            width: 100%; 
            height: 220px; 
            display: flex; 
            justify-content: center; 
            align-items: center; 
            overflow: hidden; 
            border: 1px solid #eee; 
        }
        .grid-card-img-holder img { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
        }
        .grid-card-title { 
            font-family: Arial, sans-serif; 
            font-size: 14px; 
            font-weight: bold; 
            color: #c0392b; 
            width: 100%; 
            margin: 15px 0 8px 0; 
            text-transform: uppercase; 
        }
        .grid-card-meta { 
            width: 100%; 
            font-size: 12px; 
            color: #666; 
            line-height: 1.5; 
            margin-bottom: 15px; 
        }
        
        .action-view-btn { 
            background-color: #0097e6; 
            color: white !important; 
            text-decoration: none; 
            padding: 8px 25px; 
            font-size: 13px; 
            border-radius: 4px; 
            display: inline-block; 
            transition: background 0.2s; 
            border: none;
        }
        .action-view-btn:hover { 
            background-color: #00a8ff; 
        }