/* SEAA Social Row CSS */

.seaa-social-wrapper {
    margin: 6rem 0; /* Strict requirement */
    width: 100%;
    clear: both; /* Ensures it drops beneath floating images if present */
}

.seaa-social-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
    padding: 24px 0;
    gap: 20px;
}

.seaa-social-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.seaa-social-title {
    font-family: Georgia, 'Times New Roman', Times, serif; 
    font-size: 14px;
    font-weight: 600;
    color: #444;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-right: 5px;
}

.seaa-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #D9534F; /* SEAA Brand Red explicitly applied to icon SVG paths natively */
    width: 20px; /* Reduced slightly for solid aesthetics */
    height: 20px;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.seaa-social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.75;
}

.seaa-social-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    stroke: none;
}

/* Share Button Mechanism */
.seaa-social-share-btn {
    background: transparent;
    border: 1px solid #D9534F;
    color: #D9534F;
    padding: 8px 16px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.seaa-social-share-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    stroke: none;
}

.seaa-social-share-btn:hover {
    background: #D9534F;
    color: #fff;
}

/* Responsive wrap */
@media screen and (max-width: 768px) {
    .seaa-social-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}
