.sr-feed-container {
    display: grid;
    gap: 20px;
    width: 100%;
}

.sr-item {
    display: flex;
    box-sizing: border-box;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    align-items: center;
    gap: 20px;
}

/* Card Layout Prefix Class Modifiers */
.sr-layout-vertical .sr-item {
    flex-direction: column;
    align-items: flex-start;
}

.sr-layout-vertical .sr-art-container {
    width: 100%;
}

.sr-layout-vertical .sr-art {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
}

.sr-layout-horizontal .sr-item {
    flex-direction: row;
}

/* Artwork styles */
.sr-art-container {
    flex-shrink: 0;
    display: flex;
    overflow: hidden;
}

.sr-art {
    width: 120px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Content Area */
.sr-content {
    flex-grow: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.sr-title {
    margin: 0 0 12px 0;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 600;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Custom Audio Player UI Layout */
.sr-player-ui {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

/* Play button and progress bar row alignment as requested */
.sr-player-controls-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

/* Play button and presets */
.sr-play-btn {
    width: 48px;
    height: 48px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    position: relative;
    outline: none;
    transition: background-color 0.2s, color 0.2s, transform 0.2s, border-radius 0.2s;
}

/* Shape Presets */
.sr-play-shape-circular .sr-play-btn {
    border-radius: 50%;
}
.sr-play-shape-rounded .sr-play-btn {
    border-radius: 8px;
}
.sr-play-shape-square .sr-play-btn {
    border-radius: 0;
}

.sr-play-btn-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon Switching playback transitions */
.sr-play-btn svg,
.sr-play-btn i {
    position: absolute;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.sr-play-btn .sr-icon-play-wrap {
    opacity: 1;
    transform: scale(1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sr-play-btn .sr-icon-pause-wrap {
    opacity: 0;
    transform: scale(0.6) rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sr-playing .sr-play-btn .sr-icon-play-wrap {
    opacity: 0;
    transform: scale(0.6) rotate(45deg);
}

.sr-playing .sr-play-btn .sr-icon-pause-wrap {
    opacity: 1;
    transform: scale(1) rotate(0);
}

/* Progress bar tracking - aligned horizontally with play button */
.sr-progress-track {
    flex-grow: 1;
    height: 5px;
    background-color: #eaeaea;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sr-progress-fill {
    height: 100%;
    width: 0;
    border-radius: 4px;
    background-color: #2276ec;
    transition: width 0.1s linear;
}

/* Time & controls layout alignment */
.sr-time-controls-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.sr-time {
    font-size: 0.8rem;
    color: #777777;
    font-weight: 500;
}

/* Share button styles */
.sr-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: #2276ec; /* Default to Elementor Global Color Azul */
    color: #ffffff; /* Default to Elementor Global Color Branco */
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    font-size: 0.85rem;
}

.sr-share-btn:hover {
    opacity: 0.9;
}

.sr-share-btn:focus {
    background-color: #2276ec !important; /* Focus automatically uses Azul */
    outline: none;
}

.sr-share-btn svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

/* Copied feedback state override */
.sr-share-btn.sr-copied {
    background-color: #2e7d32 !important;
    color: #ffffff !important;
    font-size: 0.7rem;
    width: auto;
    padding: 0 8px;
    border-radius: 4px;
}

/* Notices */
.sr-notice {
    padding: 15px;
    background: #fdf3f4;
    border-left: 4px solid #d32f2f;
    color: #c62828;
    font-size: 0.9rem;
    border-radius: 0 8px 8px 0;
}

@media (max-width: 767px) {
    .sr-layout-horizontal .sr-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .sr-layout-horizontal .sr-art-container {
        width: 100%;
    }
    .sr-layout-horizontal .sr-art {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }
}
