.ped-44e80e47-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.ped-44e80e47-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.ped-44e80e47-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.ped-44e80e47-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.ped-44e80e47-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ped-44e80e47-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.ped-44e80e47-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 16px 0;
    flex-grow: 1;
}

.ped-44e80e47-description p {
    margin: 0;
}

.ped-44e80e47-show-notes-wrap {
    margin-top: 10px !important;
}

.ped-44e80e47-read-more {
    color: #6c5ce7;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
}

.ped-44e80e47-read-more:hover {
    color: #5a4bd1;
}

.ped-44e80e47-audio {
    margin-top: auto;
}

.ped-44e80e47-audio audio {
    width: 100%;
    border-radius: 8px;
}

.ped-44e80e47-embed {
    width: 100%;
}

.ped-44e80e47-embed iframe {
    width: 100%;
    border-radius: 8px;
    border: none;
}

.ped-44e80e47-audio-placeholder {
    background: linear-gradient(135deg, #f0f0f5 0%, #e8e8f0 100%);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    color: #888;
    font-size: 13px;
    font-style: italic;
}

/* Modal Styles */
.ped-44e80e47-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ped-44e80e47-modal-overlay.active {
    opacity: 1;
}

.ped-44e80e47-modal-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.ped-44e80e47-modal-overlay.active .ped-44e80e47-modal-box {
    transform: translateY(0);
}

.ped-44e80e47-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #555;
}

.ped-44e80e47-modal-close:hover {
    color: #000;
}

.ped-44e80e47-modal-content {
    max-height: 70vh;
    overflow-y: auto;
    color: #555555;
    line-height: 1.6;
    font-size: 15px;
}

.ped-44e80e47-modal-content p {
    margin-bottom: 12px;
}
.ped-44e80e47-modal-content p:last-child {
    margin-bottom: 0;
}
