.opinion-modal {
    width: min(100%, 400px);
    border: 1px solid #ccc;
    background-color: white;
    position: relative;
    margin-bottom: 0.25rem;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    .opinion-modal-body {
        padding: 0.3rem;
        .modal-title {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
            margin-bottom: 0.2rem;
            svg {
                width: 24px;
                height: 15;
            }
            .title {
                font-weight: 600;
                font-size: 15px;
                line-height: 1.1;
                font-family: "OpenSansCondensed-Bold";
            }
            .sub-title {
                font-family: "OpenSauceSans-Bold";
                font-size: 12px;
                line-height: 1.15;
                margin-bottom: 0;
            }
        }

        .modal-text p {
            line-height: 1.15;
            font-size: 12px;
            a {
                line-height: 1.15;
                &:hover {
                    color: #ed2027;
                }
            }
        }

        .opinion-more {
            border-top: 1px solid #ececec;
            margin-top: 0.1rem;
            padding-top: 0.25rem;

            summary {
                cursor: pointer;
                font-family: "OpenSauceSans-Bold";
                font-size: 12px;
                color: #2d2d2d;
                list-style-position: inside;
            }
        }

        .opinion-form-link {
            display: inline-block;
            margin-top: 0.25rem;
            font-family: "OpenSauceSans-Bold";
            font-size: 12px;
            color: #ed2027;
            text-decoration: underline;
        }
    }
}

@media (max-width: 576px) {
    .opinion-modal {
        width: min(100%, calc(100vw - 1rem));

        .opinion-modal-body {
            padding: 0.25rem;
            .modal-title {
                svg {
                    width: 22px;
                    height: 22px;
                }

                .title {
                    font-size: 15px;
                }

                .sub-title {
                    font-size: 11px;
                }
            }

            .modal-text p {
                font-size: 11px;
            }

            .opinion-more {
                padding-top: 0.2rem;
            }

            .opinion-form-link {
                margin-top: 0.2rem;
                font-size: 11px;
            }
        }
    }
}
