@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.at-slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.at-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.at-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 460px; /* Adjust height as needed */
}

.at-slide p {
    margin: 0;
    font-size: 0.9rem;
    color: #333;
}

.at-author {
    font-weight: bold;
    font-style: italic;
    margin-top: 16px;
}

.at-dots {
    text-align: center;
    margin-top: 10px;
}

.at-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #494343;
    border-radius: 50%;
    cursor: pointer;
}

.at-dot.active {
    background-color: #e99e29;
}

@media screen and (max-width: 768px) {
    .at-slide p {
        font-size: 0.8rem;
    }

    .at-slide {
        height: 380px; /* Adjust height as needed */
    }
}

@media screen and (max-width: 467px) {
    .at-slide p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 14;
        overflow: hidden;
    }
}