
.arp-related-post-layout-grid {
    grid-template-columns: repeat(3, 1fr);
}

.arp-related-post-layout-list {
    grid-template-columns: 1fr;
}

.arp-related-post-post {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    background: #fff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.arp-related-post-post:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.arp-related-post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.arp-related-post-title {
    font-size: 18px;
    margin: 10px 0 5px;
    color: #333;
    text-decoration: none;
}

.arp-related-post-title:hover {
    color: #0073aa;
    text-decoration: underline;
}

.arp-related-post-excerpt {
    font-size: 14px;
    color: #666;
    margin: 10px 0;
}

.arp-related-post-read-more {
    display: inline-block;
    padding: 8px 12px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
}

.arp-related-post-read-more:hover {
    background: #005f8d;
}
.arp-related-post-related-posts {
    display: grid;
    gap: 20px;
}

.arp-related-post-columns-1 {
    grid-template-columns: 1fr;
}

.arp-related-post-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.arp-related-post-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.arp-related-post-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}
.arp-related-post-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}
.arp-related-post-columns-6 {
    grid-template-columns: repeat(6, 1fr);
}

.arp-related-post-post {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
