/**
 * Media Text Section Block Frontend Styles
 */

.will-media-text-section {
    margin-bottom: 0 !important;
}

.will-media-text-section img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.will-media-text-section img:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* コンテンツ幅の設定 */
.will-media-text-section .max-w-4xl {
    max-width: 56rem; /* 896px */
}

.will-media-text-section .max-w-5xl {
    max-width: 64rem; /* 1024px */
}

.will-media-text-section .max-w-6xl {
    max-width: 72rem; /* 1152px */
}

.will-media-text-section .max-w-7xl {
    max-width: 80rem; /* 1280px */
}

/* pタグのマージンをリセット */
.will-media-text-section p {
    margin: 0;
}

