.atw-posts-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 24px;
}
.atw-card {
background: #f3f3f3;
border: 1px solid #222;
border-radius: 34px;
overflow: hidden;
max-width: 820px;
width: 100%;
margin: 0 auto 24px;
box-sizing: border-box;
height: fit-content;
}
.atw-card__header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 30px;
gap: 20px;
}
.atw-card__profile {
display: flex;
align-items: center;
gap: 18px;
min-width: 0;
}
.atw-card__avatar {
width: 86px;
height: 86px;
border-radius: 50%;
object-fit: cover;
border: 2px solid #2d2d2d;
flex-shrink: 0;
}
.atw-card__avatar--placeholder {
background: #d4d4d4;
}
.atw-card__username {
font-size: 24px;
line-height: 1.2;
color: #2a2a2a;
word-break: break-word;
}
.atw-card__menu {
font-size: 38px;
line-height: 1;
color: #2a2a2a;
flex-shrink: 0;
}
.atw-card__media {
position: relative;
width: 100%;
background: #ddd;
}
.atw-card__media img {
width: 100%;
display: block;
object-fit: cover;
}
.atw-card__content {
padding: 34px 34px 40px;
}
.atw-card__title {
margin: 0 0 22px;
font-size: 1rem;
line-height: 1.25;
font-weight: 700;
color: #2a2a2a;
}
.atw-card__text, .atw-card__text p {
font-size: 1rem;
line-height: 1.42;
color: #2f2f2f;
text-align: justify;
}
.atw-card__text p:last-child {
margin-bottom: 0;
}
.atw-card__slides {
position: relative;
}
.atw-card__slide {
display: none;
}
.atw-card__slide.is-active {
display: block;
}
.atw-card__nav {
position: absolute;
top: 90%;
transform: translateY(-50%);
width: 42px;
height: 42px;
border: 0;
border-radius: 50%;
background: rgba(255,255,255,.9);
cursor: pointer;
font-size: 28px;
line-height: 1;
z-index: 2; }
.atw-card__nav--prev {
left: 12px;
}
.atw-card__nav--next {
right: 12px;
}
.atw-card__dots {
display: flex;
justify-content: center;
gap: 8px;
position: absolute;
left: 0;
right: 0;
bottom: 14px;
z-index: 2;
}
.atw-card__dot {
width: 10px;
height: 10px;
border: 0;
border-radius: 50%;
background: rgba(255,255,255,.6);
cursor: pointer;
padding: 0;
}
.atw-card__dot.is-active {
background: rgba(255,255,255,1);
}
.atw-layout-text-only .atw-card__content {
padding-top: 10px;
}
@media (max-width: 767px) {
.atw-card {
border-radius: 24px;
}
.atw-card__header {
padding: 18px 18px 12px;
}
.atw-card__avatar {
width: 40px;
height: 40px;
}
.atw-card__username {
font-size: 15px;
}
.atw-card__menu {
font-size: 28px;
}
.atw-card__content {
padding: 24px 20px 28px;
}
.atw-card__title {
font-size: 15px;
margin-bottom: 14px;
}
.atw-card__text,
.atw-card__text p {
font-size: 15px;
line-height: 1.5;
}
}