.elementor-8115 .elementor-element.elementor-element-dde8c67{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:40px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for shortcode, class: .elementor-element-83b29c8 *//* === A-Z Listing: 3-Column Clean Grid Layout === */

.az-listing .items-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 per row on desktop */
    gap: 40px;
    align-items: stretch;
}

/* Letter section box */
.letter-section {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 25px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.letter-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Letter title */
.letter-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    border-bottom: 2px solid #f2f2f2;
    padding-bottom: 8px;
}

/* List inside each letter section */
.az-columns {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    flex-grow: 1;
}

.az-columns li {
    margin-bottom: 8px;
}

.az-columns a {
    color: #004080;
    text-decoration: none;
    font-size: 15px;
}

.az-columns a:hover {
    text-decoration: underline;
}

/* Back to top link */
.back-to-top {
    text-align: right;
    margin-top: auto;
}

.back-to-top a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
}

.back-to-top a:hover {
    color: #000;
}

/* === Responsive Layout === */

/* Tablet (2 per row) */
@media (max-width: 991px) {
    .az-listing .items-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile (1 per row) */
@media (max-width: 600px) {
    .az-listing .items-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}/* End custom CSS */